/* Institution-specific CSS classes */

/* Extracted content display */
.extracted-categories {
    margin-top: 20px;
}

.category-toggle {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.toggle-header {
    background-color: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

.toggle-header:hover {
    background-color: #e9ecef;
}

.toggle-header.expanded {
    background-color: #e9ecef;
}

.toggle-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #666;
}

.toggle-header.expanded .toggle-icon {
    transform: rotate(180deg);
}

.category-title {
    font-weight: 600;
    color: #333;
    flex-grow: 1;
    margin-left: 10px;
}

.category-text {
    padding: 15px 20px 15px 0px;
}

.category-text .category-title {
    font-weight: 600;
    color: #333;
    margin: 0;
}

.extraction-status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    background-color: #28a745;
    color: white;
    font-weight: 500;
}

.extraction-status.no-data {
    background-color: #dc3545;
}

.toggle-content {
    padding: 20px;
    background-color: white;
    display: none;
    border-top: 1px solid #e0e0e0;
}

.toggle-content.show {
    display: block;
}

.toggle-content h4{
    margin-top: 0;
}

.toggle-content p {
    margin: 0 0 10px 0;
}

.toggle-content ul {
    margin: 0;
    padding-left: 20px;
}

.toggle-content li {
    margin-bottom: 5px;
}

.subcategory-toggle {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 8px;
    overflow: hidden;
}

.subcategory-header {
    background-color: #f8f9fa;
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

.subcategory-header:hover {
    background-color: #e9ecef;
}

.subcategory-header.expanded {
    background-color: #e9ecef;
}

.subcategory-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
    color: #666;
}

.subcategory-header.expanded .subcategory-icon {
    transform: rotate(90deg);
}

.subcategory-title {
    font-weight: 500;
    color: #333;
    flex-grow: 1;
    margin-left: 8px;
}

.subcategory-status {
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 10px;
    background-color: #28a745;
    color: white;
    font-weight: 500;
}

.subcategory-status.no-data {
    background-color: #dc3545;
}

.subcategory-content {
    padding: 15px;
    background-color: white;
    display: none;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
}

.subcategory-content.show {
    display: block;
}

.subcategory-content p {
    margin: 0 0 8px 0;
}

.subcategory-content ul {
    margin: 0;
    padding-left: 15px;
}

.subcategory-content li {
    margin-bottom: 4px;
}

/* Input toggle functionality */
.input-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.toggle-button {
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    background-color: white;
    color: #666;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.toggle-button:hover {
    border-color: rgb(0, 106, 170);
    color: rgb(0, 106, 170);
}

.toggle-button.active {
    background-color: rgb(0, 106, 170);
    border-color: rgb(0, 106, 170);
    color: white;
}

.input-section {
    display: none;
}

.input-section.active {
    display: block;
}

/* Manual input section */
.manual-input-section {
    margin-top: 15px;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.manual-input-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.manual-input-section textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    box-sizing: border-box;
}

.manual-input-section textarea:focus {
    outline: none;
    border-color: rgb(0, 106, 170);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

/* Radio and checkbox option styling */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    flex-direction: row;
}

.radio-option:hover {
    border-color: rgb(0, 106, 170);
    background-color: #f8f9ff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    background-color: rgb(0, 106, 170);
    border-color: rgb(0, 106, 170);
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: rgb(0, 106, 170);
    background-color: #f0f8ff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.radio-custom {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: white;
    transition: all 0.3s ease;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 15px;
}

.option-content strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    margin-top: 0;
}

.option-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Checkbox option styling */
.checkbox-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    flex-direction: row;
}

.checkbox-option:hover {
    border-color: rgb(0, 106, 170);
    background-color: #f8f9ff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
    background-color: rgb(0, 106, 170);
    border-color: rgb(0, 106, 170);
}

.checkbox-option:has(input[type="checkbox"]:checked) {
    border-color: rgb(0, 106, 170);
    background-color: #f0f8ff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.checkbox-custom {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 3px;
    background-color: white;
    transition: all 0.3s ease;
    margin-right: 15px;
    flex-shrink: 0;
    position: relative;
}

.checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
    opacity: 1;
}

.checkbox-option.selected {
    border-color: rgb(0, 106, 170);
    background-color: #f0f8ff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.checkbox-option.selected .option-content strong {
    color: rgb(0, 106, 170);
}

/* Rationale container styling */
.rationale-container {
    width: 90%;
    margin: 10px 0px 20px 35px;
}

.rationale-container h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 0;
    margin-bottom: 0;
}

.rationale-container .section-description {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    margin-bottom: 15px;
}

.rationale-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rationale-options .radio-option,
.rationale-options .checkbox-option {
    padding: 12px 15px;
    margin: 0;
    border: 1px solid #e0e0e0;
    background-color: #f8f9fa;
}

.rationale-options .radio-option:hover,
.rationale-options .checkbox-option:hover {
    border-color: rgb(0, 106, 170);
    background-color: #e3f2fd;
}

.rationale-options .radio-option.selected,
.rationale-options .checkbox-option.selected {
    border-color: rgb(0, 106, 170);
    background-color: #e3f2fd;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.rationale-options .option-content {
    flex-direction: column;
}

.rationale-options .option-content strong {
    font-size: 14px;
    margin-bottom: 3px;
}

.rationale-options .option-description {
    font-size: 13px;
    color: #555;
}

/* Assignment objectives editor */
.editable-content {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    background-color: white;
}

.editable-content:focus {
    outline: none;
    border-color: rgb(0, 106, 170);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.editable-content:disabled {
    background-color: #f8f9fa;
    color: #666;
    cursor: not-allowed;
}

.editable-content::placeholder {
    color: #999;
    font-style: italic;
}

/* Manual rationale input */
.manual-rationale-input {
    margin-top: 15px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.manual-rationale-input label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: block;
}

.manual-rationale-input textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.manual-rationale-input textarea:focus {
    outline: none;
    border-color: rgb(0, 106, 170);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.manual-rationale-input textarea::placeholder {
    color: #999;
    font-style: italic;
}

/* Multiple link input styling */
#institution-links-container {
    margin-bottom: 15px;
}

.link-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.link-input-group .input-field {
    flex: 1;
}

.add-link-btn {
    background-color: #f8f9fa;
    color: rgb(0, 106, 170);
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.add-link-btn:hover {
    background-color: #e3f2fd;
    border-color: rgb(0, 106, 170);
    color: rgb(0, 106, 170);
}

.remove-link-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.remove-link-btn:hover {
    background-color: #c82333;
    transform: translateY(-1px);
}

.remove-link-btn:active {
    transform: translateY(0);
}


/* Navigation buttons */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-button:hover {
    background-color: #e9ecef;
    border-color: rgb(0, 106, 170);
    color: rgb(0, 106, 170);
    text-decoration: none;
}

.nav-button:active {
    transform: translateY(1px);
}

.prev-button {
    background-color: rgba(255,255,255,0.9);
    border: 2px solid rgba(0,0,0,0.2);
    color: rgba(0,0,0,0.3);
}

.prev-button:hover {
    background-color: #e9ecef;
}

.next-button {
    background-color: rgba(0,0,0,0.1);
    border: 2px solid rgba(0,0,0,0.2);
}

.next-button:hover {
    background-color: #e9ecef;
}

.nav-arrow {
    font-size: 16px;
    font-weight: bold;
}

/* Extract button states */
.extract-button.extracted {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
    cursor: not-allowed;
}

.extract-button.error {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
    cursor: not-allowed;
}

/* Modal Overlay Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    padding: 20px 25px 15px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    padding: 15px 25px 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.modal-cancel {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.modal-cancel:hover {
    background-color: #5a6268;
}

.modal-save {
    background-color: rgb(0, 106, 170);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.modal-save:hover {
    background-color: #0056b3;
}

.modal-save:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.modal-add {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.modal-add:hover {
    background-color: #218838;
}

.modal-add:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.modal-extract {
    background-color: rgb(0, 106, 170);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.modal-extract:hover {
    background-color: #0056b3;
}

.modal-extract:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

/* Modal Uploads Display */
.modal-uploads-display {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.modal-uploads-display h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.modal-uploads-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-uploads-list .upload-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.modal-uploads-list .upload-item-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.modal-uploads-list .upload-item-icon {
    font-size: 16px;
}

.modal-uploads-list .upload-item-text {
    font-size: 14px;
    color: #333;
    word-break: break-all;
}

.modal-uploads-list .upload-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.modal-uploads-list .upload-item-remove:hover {
    background-color: #f8d7da;
}

/* Modal Loading Overlay */
.modal-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
    border-radius: 12px;
}

.modal-loading-overlay.show {
    display: flex;
}

.modal-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid rgb(0, 106, 170);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.modal-loading-text {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Upload Button Styles */
.upload-button {
    background-color: #f8f9fa;
    color: #666;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.upload-button:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    color: #495057;
}

.upload-button:active {
    transform: translateY(1px);
}

.upload-icon {
    font-size: 14px;
}

/* Upload Options Styles */
.upload-options {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.upload-option {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background-color: #f8f9fa;
}

/* Disabled state for upload options */
.upload-option.disabled {
    background-color: #f1f3f5;
    border-color: #e5e7eb;
    opacity: 0.7;
}

.upload-option.disabled,
.upload-option.disabled * {
    cursor: not-allowed !important;
}

.upload-option.disabled h4 {
    color: #9aa0a6;
}

.upload-option h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.link-input-container {
    margin-top: 10px;
}

.link-input-container .input-field {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.link-input-container .input-field:focus {
    outline: none;
    border-color: rgb(0, 106, 170);
}

/* Uploads Display Styles */
.uploads-display {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.uploads-display h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.upload-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 8px;
    transition: background-color 0.3s ease;
}

.upload-item:hover {
    background-color: #f8f9fa;
}

.upload-item-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

.upload-item-icon {
    font-size: 16px;
    color: rgb(0, 106, 170);
}

.upload-item-text {
    font-size: 14px;
    color: #333;
    word-break: break-all;
}

.upload-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.upload-item-remove:hover {
    background-color: #f8d7da;
}

/* File Upload Container Styles (for modal) */
.modal-body .file-upload-container {
    margin-top: 10px;
}

.modal-body .upload-area {
    border: 2px dashed rgb(0, 106, 170);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    background-color: #f8f9ff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.modal-body .upload-area:hover {
    background-color: #e8f4ff;
    border-color: #0056b3;
}

.modal-body .upload-text {
    color: rgb(0, 106, 170);
    font-size: 14px;
    font-weight: 500;
}

.modal-body .file-input {
    display: none;
}

.modal-body .file-upload-label {
    cursor: pointer;
    display: block;
}

/* PDF Source Display Styles */
.pdf-source {
    color: rgb(0, 106, 170);
    font-style: normal;
    font-size: 0.9em;
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgb(0, 106, 170);
    display: inline-block;
    margin-bottom: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* .pdf-source::before {
    content: "📄 ";
    margin-right: 4px;
} */

.pdf-source:hover {
    background-color: #e8f4ff;
    border-color: #0056b3;
    color: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.source {
    color: #666;
    font-style: italic;
    font-size: 0.9em;
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    display: inline-block;
    margin-bottom: 8px;
    position: relative;
    cursor: default;
}

/* .source::before {
    content: "🔗 ";
    margin-right: 4px;
} */

/* URL Source Display Styles */
.url-source {
    color: rgb(0, 106, 170);
    font-style: italic;
    font-size: 0.9em;
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgb(0, 106, 170);
    display: inline-block;
    margin-bottom: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* .url-source::before {
    content: "🔗 ";
    margin-right: 4px;
} */

.url-source:hover {
    background-color: #e8f4ff;
    border-color: #0056b3;
    color: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
    text-decoration: none;
}

