/* Modern Glass Card Styles */
.glass-card {
    background: rgba(13, 17, 23, 0.65) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 32px 0 rgba(74, 158, 255, 0.2),
                inset 0 0 32px 0 rgba(74, 158, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(74, 158, 255, 0.3),
                inset 0 0 42px 0 rgba(74, 158, 255, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.3) !important;
}

.glass-card .card-header {
    background: rgba(13, 17, 23, 0.4) !important;
    border-bottom: 1px solid rgba(74, 158, 255, 0.2) !important;
    border-radius: 15px 15px 0 0 !important;
    padding: 1rem !important;
}

.glass-card .card-footer {
    background: rgba(13, 17, 23, 0.4) !important;
    border-top: 1px solid rgba(74, 158, 255, 0.2) !important;
    border-radius: 0 0 15px 15px !important;
    padding: 1rem !important;
}

/* Geometric Background */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
}

.geometric-bg canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

/* Dark theme adjustments */
.dark-theme {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
}

.dark-theme .glass-card {
    background: rgba(13, 17, 23, 0.65) !important;
}

/* Card content adjustments */
.glass-card .card-body {
    padding: 1.5rem !important;
}

.glass-card .d-flex {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(74, 158, 255, 0.1);
}

.glass-card .d-flex:last-child {
    border-bottom: none;
}

.glass-card .fw-bold {
    color: #4a9eff;
    text-shadow: 0 0 10px rgba(74, 158, 255, 0.3);
}

/* Button styling */
.glass-card .btn-primary {
    background: rgba(74, 158, 255, 0.2) !important;
    border: 1px solid rgba(74, 158, 255, 0.3) !important;
    backdrop-filter: blur(5px);
    color: #4a9eff !important;
    text-shadow: 0 0 10px rgba(74, 158, 255, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.glass-card .btn-primary:hover {
    background: rgba(74, 158, 255, 0.3) !important;
    border: 1px solid rgba(74, 158, 255, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 158, 255, 0.2);
}

/* Additional text styling */
.glass-card h5.mb-0 {
    color: #fff;
    text-shadow: 0 0 10px rgba(74, 158, 255, 0.3);
}

.glass-card .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Make all cards in the site use glass effect */
.card {
    background: rgba(13, 17, 23, 0.65) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 32px 0 rgba(74, 158, 255, 0.2);
}

/* Table adjustments for glass effect */
.table {
    color: rgba(255, 255, 255, 0.8) !important;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background: rgba(74, 158, 255, 0.05) !important;
}

.table th {
    border-bottom: 1px solid rgba(74, 158, 255, 0.2) !important;
    color: #4a9eff !important;
}

.table td {
    border-bottom: 1px solid rgba(74, 158, 255, 0.1) !important;
} 