.resource-categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.resource-categories-list li {
    margin: 0;
}

.upload-resource-button {
    margin-bottom: 2rem;
    text-align: center;
}

.upload-resource-button .btn--boxed {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.upload-resource-button .btn--boxed:hover {
    background-color: #005177;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .resource-categories-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .resource-categories-list li a {
        display: block;
        width: 100%;
    }
}

.resource-form .form-group {
    margin-bottom: 1.5rem;
}

.resource-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.resource-form input[type="text"],
.resource-form select,
.resource-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-size: 1rem !important;
}

.resource-form input[type="text"]:focus,
.resource-form select:focus,
.resource-form textarea:focus {
    border-color: #07bfd0;
    outline: none;
    box-shadow: 0 0 0 2px rgba(7, 191, 208, 0.1);
}

.resource-form input[type="file"] {
    padding: 0.5rem 0;
}

small {
    display: block;
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.875rem;
}

.resource-form .required {
    color: #dc3545;
}

/* Select2 Custom Styles */
.select2-container--default .select2-selection--multiple {
    border: 1px solid #ddd !important;
    border-radius: 4px;
    min-height: 42px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #07bfd0;
    border: none;
    color: white;
    padding: 4px 8px;
    margin: 4px;
    border-radius: 3px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: white;
    margin-right: 5px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn--submit {
    background-color: #07bfd0;
    color: white;
}

.btn--submit:hover {
    background-color: #069aab;
}

.btn--edit {
    background-color: #ffc107;
    color: #000;
}

.btn--edit:hover {
    background-color: #e0a800;
}

.btn--delete {
    background-color: #dc3545;
    color: white;
}

.btn--delete:hover {
    background-color: #c82333;
}

/* Resources List Styles */
.resources-list {
    margin-top: 2rem;
}

.resource-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.resource-title {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1.25rem;
}

.resource-meta {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666;
}

.resource-status {
    margin-right: 1.5rem;
    font-size: 1.2em;
}

.status-published {
    color: #28a745;
}

.status-pending {
    color: #07bfd0;
}

.status-deletion {
    color: #dc3545;
}

.resource-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.delete-form {
    margin: 0;
}

/* Success Message */
.message.success {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid #c3e6cb;
}


.resources-sidebar .menu-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.resources-sidebar .menu-items {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.resources-sidebar .menu-items li {
    margin-bottom: 0.75rem;
}
.resources-sidebar .menu-items li span.request-date {
    font-size: 0.85rem;
}

.resources-sidebar .menu-items a {
    color: #07bfd0;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.resources-sidebar .menu-items a:hover {
    color: #069aab;
}

.resources-sidebar .coming-soon {
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}
.btn-blue {
    background: #63d8e2;
}
.btn-yellow {
    background: #fa9e00;
}
.w-100 {
    width: 100% !important;
}
.text-center {
    text-align: center;
}
.mb-20 {
    margin-bottom: 20px;
}
.tcol--1, .tcol--2 {
    box-sizing: border-box;
}
.bia-cloud .tcol--2 {
    padding-right: 40px;
}

/* File Upload Styles */
.file-upload-wrapper {
    margin-bottom: 10px;
}

.file-upload-button {
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
}

.file-upload-button input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-names {
    margin-top: 10px;
}

.selected-files {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #495057;
}

.btn-blue {
    background: #63d8e2;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-blue:hover {
    background: #4bc0c8;
    color: #fff;
}
.answer-excerpt {
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}
.category-description {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    margin: 20px 0;
    background: #ffe9a6;
    padding: 20px;
    border-radius: 8px;
}
.side-step {
    font-weight: 600;
    font-size: 4rem;
    position: absolute;
    left: -75px;
    color: #d6f0f3;
}
.side-step.rotate-90 {
    display: inline-block;
    /* transform: rotate(-90deg); */
    white-space: nowrap;
    left: -130px;
    top: -8px;
    font-size: 1.6rem;
}