.logo {
    height: 35px;
}

.logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.device-card {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    height: 100%;
    border-radius: 10px;
    background: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.device-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #66afe9;
    outline: none;
}

.textarea {
    height: 90px;
    resize: vertical;
}

.form-control-file {
    padding: 5px 0;
}

.btn-remove {
    padding: 8px 14px;
    background-color: #e53935;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-remove:hover {
    background-color: #c62828;
}

.preview-image {
    object-fit: cover;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.image-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.btn-ckfinder{
    color: #fff !important;
    border-color: var(--bs-primary-shade-20) !important;
    background-color: var(--bs-primary-shade-20) !important;
    width: 120px;
}

.object-scale-down{
    object-fit: scale-down;
}

.select2-container .select2-selection--single .select2-selection__rendered, .select2-container--default .select2-selection--multiple {
    padding: 10px 12px;
    color: #8a92a6;
    line-height: 22px;
    font-size: 14px;
}

.select2-results__options > li {
    padding: 10px 12px;
    color: #8a92a6;
    line-height: 22px;
    font-size: 14px;
}

.select2-container--default .select2-selection--single, .select2-container--default .select2-selection--multiple {
    border: 1px solid #ccc;
}

#project-list-table {
    table-layout: fixed;
}

#project-list-table tbody td {
    text-wrap: wrap;
}

.forgot-password a{
    color: #8a92a6;
}

.back-to-login a{
    color: #8a92a6;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-bottom: .5rem;
}

.fs-12px{
    font-size: 12px;
}

.fs-11px{
    font-size: 11px;
}

.small.text-muted{
    display: none;
}

.pagination{
    padding: 10px 0;
    margin-bottom: 0;
}

@media(max-width: 1440px){
    #project-list-table thead tr th:nth-child(1){
        width: 60px !important;
    }
    #project-list-table thead tr th:nth-child(5),
    #project-list-table thead tr th:nth-child(6){
        width: 160px !important;
    }
}