#properties_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2%;
    width: 96%;
    height: 96%;
}

#properties_disk {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4%;
}

#properties_disk>div {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 5% 10%;
    margin: 5px 0;
}

#disk_name {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 30px;
}

#disk_name img {
    height: 100%;
    aspect-ratio: 1/1;
    pointer-events: none;
}
#disk_name input[type="text"] {
    padding: 0 5px;
}

#disk_type,
#disk_storage {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    text-align: left;
}

#disk_type {
    display: block;
}

#disk_type>div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

#properties_optimizition {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
}

#defragmentation_img {
    height: 30px;
    width: 30px;
    pointer-events: none;
}

#optimizeBTN {
    align-items: center;
    background-color: rgba(0, 0, 0, .4);
    border: 0;
    border-radius: 10px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 700;
    height: 30px;
    width: 150px;
    justify-content: center;
    letter-spacing: .4px;
    line-height: 1;
    padding: 2px 5px;
    text-decoration: none;
    text-transform: uppercase;
    user-select: none;
    transition: color 200ms;
}

#optimizeBTN:active {
    outline: 0;
}

#optimizeBTN:hover {
    outline: 0;
}

#optimizeBTN span {
    transition: all 200ms;
}

#optimizeBTN:hover span {
    transform: scale(.9);
    color: #01c0fa;
    opacity: .75;
}
#properties_optimization {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
}