
.library-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffae00 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.library-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.library-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.library-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffae00 100%);
    color: #1a1a2e;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.library-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #000;
}

/* Modal Styling */
#digital-resources-modal .modal-content {
    background: rgba(10, 10, 124, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    color: rgba(10, 10, 124, 0.95)f;
}

#digital-resources-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#digital-resources-modal .modal-title {
    color: #ffd700;
    font-weight: 700;
}

#digital-resources-modal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

#digital-resources-modal .table {
    color: #fff;
    margin-bottom: 0;
}

#digital-resources-modal .table td {
    padding: 15px;
    border-color: rgba(255, 255, 255, 0.05);
}

#digital-resources-modal .table a {
    color: rgba(10, 10, 124, 0.95);
    transition: all 0.3s ease;
    display: block;
}


