/* Profile Page Styles */
.profileNavMenuButton {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin: 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.profileNavMenuButton:hover {
    background-color: rgba(25, 182, 202, 0.1);
    transform: translateY(-2px);
}

.profileNavMenuButton p {
    margin: 5px 0 0 0;
    font-size: 12px;
    color: rgba(25, 182, 202, 0.8);
}

.set {
    font-weight: bold;
}

/* Modern Card Styles */
.card {
    transition: all 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

/* Gradient Backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-success {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-radius: 15px 15px 0 0;
    color: white;
}

.modal-footer {
    border-radius: 0 0 15px 15px;
    color: white;
}

/* Button Styles */
.btn {
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Modern Table Styles */
.table {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
}

.table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 20px 15px;
}

.table td {
    border: none;
    padding: 20px 15px;
    vertical-align: middle;
    font-size: 14px;
    border-bottom: 1px solid #f8f9fa;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    transform: scale(1.01);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

/* Member Photo Styles */
.member-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Form Styles */
.wrap-input100 {
    margin-bottom: 20px;
}

.label-input100 {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.input100 {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.input100:focus {
    outline: none;
    border-color: rgba(25, 182, 202, 0.8);
    box-shadow: 0 0 0 3px rgba(25, 182, 202, 0.1);
}

/* Progress Bar */
.progress {
    height: 20px;
    border-radius: 10px;
    background-color: #f0f0f0;
    overflow: hidden;
}

.progress-bar {
    background-color: rgba(25, 182, 202, 0.8);
    transition: width 0.3s ease;
}

/* QR Code Styles */
#qrcode {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-fluid {
        margin-top: 50px !important;
        padding: 10px !important;
    }
    
    .modal-dialog {
        margin: 10px;
    }
    
    .btn {
        width: 100%;
        margin: 5px 0;
        font-size: 14px;
    }
    
    .card-body {
        padding: 20px !important;
    }
    
    .table th,
    .table td {
        padding: 10px 8px !important;
        font-size: 12px;
    }
    
    .member-photo {
        width: 40px;
        height: 40px;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    .btn-lg {
        padding: 12px 20px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {
    .table-responsive {
        font-size: 11px;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .modal-dialog {
        margin: 5px;
    }
    
    .card-body {
        padding: 15px !important;
    }
}