/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    overflow-y: auto;
    min-height: 120vh;
    background: #222e3c;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

/* Ensuring the logo is properly aligned */
.sidebar-logo {
    text-align: center;
    margin-bottom: 20px;
}

.sidebar-logo img {
    max-width: 80%;
}

/* Sidebar Menu */
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.sidebar-menu li {
    padding: 8px 15px;
    display: flex;
    align-items: center;
}

.sidebar-menu li a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 13px;
    border-radius: 6px;
    transition: 0.3s;
}

.sidebar-menu li a i {
    margin-right: 10px;
}

/* Active Sidebar Item */
.sidebar-menu li a.active {
    background: #BB9F1C;
}

/* Ensure no space on the left */
.dashboard-main {
    margin-left: 250px; /* Same width as sidebar */
    padding: 20px;
    width: calc(100% - 250px);
}

/* Responsive Sidebar for Mobile */
@media (max-width: 768px) {
    .sidebar {
        width: 200px;
    }

    .dashboard-main {
        margin-left: 200px;
        width: calc(100% - 200px);
    }
}


/* Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.search-bar input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 250px;
}

.user-actions i {
    margin-left: 15px;
    cursor: pointer;
}

/* Stats Cards */
.stats-cards {
    display: flex;
    gap: 20px;
}

.card {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.card h3 {
    margin-bottom: 5px;
}

.card-value {
    font-size: 24px;
    font-weight: bold;
}

.card-info {
    font-size: 14px;
}

.card-blue {
    background: #007bff;
}

.card-green {
    background: #28a745;
}

.card-red {
    background: #dc3545;
}

/* Charts Section */
.charts-section {
    display: flex;
    margin-top: 20px;
    gap: 20px;
}

.chart-card {
    flex: 2;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Notifications Panel */
.notifications-panel {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.notifications-panel h3 {
    margin-bottom: 10px;
}

.notifications-panel ul {
    padding: 0;
    list-style: none;
}

.notifications-panel li {
    margin-bottom: 8px;
}

.notifications-panel span {
    float: right;
    color: gray;
    font-size: 12px;
}

.notifications-panel a {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: #007bff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-cards {
        flex-direction: column;
    }
}


.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.register-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.register-form select,
.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.register-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 25px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.register-form input[type="submit"]:hover {
    background-color: #0056b3;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.show-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: #007bff;
    font-size: 14px;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.login-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
}
.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.login-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 25px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    font-weight: bold;
}
.login-form input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Dashboard Container */
.dashboard-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f5f5f5; /* Light Gray */
    margin-top: 100px;
}

/* Members Section */
.members-section {
    width: 30%;
    background-color: #000; /* Dark Blue */
    color: white;
    padding: 15px;
    border-radius: 10px;
}

.members-section h3 {
    text-align: center;
    color: #ffc107; /* Yellow */
    margin-bottom: 20px;
}

.members-section .member {
    text-align: center;
    margin-bottom: 20px;
}

.members-section img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.members-section p {
    font-size: 14px;
    margin: 0;
}

/* Center Buttons */
.center-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 30%;
}

.center-buttons .menu-button {
    width: 100%;
    padding: 15px;
    background-color: #1a237e; /* Dark Blue */
    color: white;
    text-align: center;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.center-buttons .menu-button:hover {
    background-color: #3949ab; /* Lighter Blue */
}


body.auth-page {
    background-image: url('/images/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

body.default-page {
    background-color: #f8f9fa;
}

/* Profile Container */
.profile-container {

    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f0f2f5; /* Light gray background */
}

/* Profile Content */
.super-profile-content {
    display: flex;
    width: 100%;
    margin-top: 30px;
}

/* Photo Section */
.photo-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #f8f9fa; /* Light background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    height: 50%;
}

.sprofile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid #233DFF; /* Matching border with blue */
}

.update-photo-btn {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #233DFF; /* Vibrant blue */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.update-photo-btn:hover {
    background-color: #1b2fb8; /* Darker blue on hover */
}

/* Profile Information Section */
.profile-info {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: #1d3557; /* Navy blue */
    border-radius: 10px;
    color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Input Section */
.input-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.input-field {
    width: calc(50% - 10px);
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    background-color: #f8f9fa; /* Light background */
    color: #333; /* Dark text */
}

.input-field::placeholder {
    color: #999; /* Subtle placeholder text */
}

/* Bio Section */
.bio-section {
    text-align: center;
    background-color: #f8f9fa; /* Light background */
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.bio-section h3 {
    color: #000; /* Vibrant blue that stands out */
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.bio-textarea {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    background-color: #f8f9fa; /* Light background */
    color: #333; /* Dark text */
}

/* Questionnaire Section */
.questionnaire-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.questionnaire-buttons button {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 10px;
    background-color: #233DFF; /* Vibrant blue */
    color: white;
    border: none;
    cursor: pointer;
}

.questionnaire-buttons button:hover {
    background-color: #1b2fb8; /* Darker blue on hover */
}

/* Image Gallery Section */
.image-gallery {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.image-item {
    width: 80px;
    height: 80px;
    background-color: #e0e0e0; /* Light gray */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 24px;
    cursor: pointer;
    border: 2px solid #1d3557; /* Navy blue border */
}

.image-item:hover {
    background-color: #d6d6d6; /* Slightly darker gray */
}

/* Modal Styles */
.modal-content {
    border-radius: 10px;
    padding: 20px;
    background-color: #f8f9fa; /* Light gray */
}

.modal-header, .super-modal-footer {
    background-color: #233DFF; /* Vibrant blue */
    color: white;
}

.super-modal-body {
    padding: 15px;
}

.modal-content .super-form-label {
    color: #000; /* Sets the label color to black */
    font-weight: bold; /* Optionally make the text bold for better visibility */
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px; /* Consistent spacing */
    margin-top: 20px; /* Space above the buttons */
    justify-content: center; /* Center align horizontally */
    align-items: center; /* Align items vertically */
}

/* General Button Styling */
.action-buttons .super-btn {
    padding: 10px 20px; /* Uniform padding */
    font-size: 15px;
    border-radius: 6px; /* Consistent border-radius */
    text-align: center;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    box-shadow: none; /* Remove unwanted shadow */
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 140px; /* Ensure buttons are uniform in width */
}

/* Save Button (Green) */
.btn-success {
    background-color: #28a745;
    color: white;
}

.btn-success:hover {
    background-color: #218838;
}

/* Publish User Button (Blue) */
.btn-primary {
    background-color: #3949ab;
    color: white;
    padding: 12px 24px;
}

.btn-primary:hover {
    background-color: #303f9f;
}

/* Cancel Button (Red) */
.btn-danger {
    background-color: #dc3545;
    color: white;
    text-decoration: none; /* Remove underline */
}

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

/* Remove unwanted shadows and strange outline issues */
.action-buttons .btn:focus,
.action-buttons .btn:active {
    outline: none;
    box-shadow: none;
}

/* Ensure buttons are properly aligned on smaller screens */
@media screen and (max-width: 768px) {
    .action-buttons {
        flex-direction: row;
        gap: 10px;
    }

    .action-buttons .btn {
        min-width: auto;
        width: auto;
    }
}






/* Match Container */
.match-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    margin-top: 100px;
}

/* Match Suggestion Section */
.match-suggestion {
    width: 40%;
    text-align: center;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}

.match-suggestion h3 {
    margin-bottom: 20px;
}

.match {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


.match-lady, .match-male {
    text-align: center;
}

.match img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.match-line {
    height: 2px;
    width: 50px;
    background-color: black;
    margin: 0 10px;
}

.create-match-btn {
    background-color: #233DFF;
    color: white;
    border-radius: 10px;
    font-weight: bold;
}


.matches-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

.matches-section {
    width: 30%;
    background-color: #000;
    color: white;
    padding: 15px;
    border-radius: 10px;
}

.matches-section h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #ffc107;
}

.match-pair {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.match-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.match-item p {
    margin: 0;
    text-align: center;
}

.match-line {
    width: 50px;
    height: 2px;
    background-color: white;
}

.match-suggestion {
    width: 40%;
    text-align: center;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}

.match-suggestion h3 {
    margin-bottom: 20px;
}

.match img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.unmatch-btn {
    background-color: #e53935;
    color: white;
    border-radius: 10px;
    font-weight: bold;
    margin-top: 20px;
}

.suggestions-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
   
}

.suggestions-section {
    width: 30%;
    background-color: #000; /* Dark Blue */
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.suggestion-match {
    width: 30%;
    text-align: center;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}




.suggestions-section h3, .suggestion-match h3 {
    margin-bottom: 15px;
    color: #ffc107;
}

.suggestion-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.suggestion-item p {
    margin: 0;
}

.match img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.match-line {
    width: 50px;
    height: 2px;
    background-color: white;
    margin: 10px auto;
}

.btn-primary {
    background-color: #3949ab;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #303f9f;
}

.male-search-container {
    text-align: center;
    margin: 20px 0;
    margin-top: 100px;
}
.male-search-input {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}
.male-search-input:focus {
    border-color: #007bff;
}
.male-signups-container {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.male-signup-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap;
    width: 100%;
    min-height: 120px; /* Ensure consistent height */
}

.male-signup-info {
    flex-grow: 1;
    margin-left: 15px;
    min-width: 200px; /* Prevent text area from shrinking */
    flex-shrink: 1;
}

.male-signup-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 250px; /* Prevents shrinking */
    flex-wrap: nowrap;
    align-items: center;
}

.male-signup-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #007bff;
    flex-shrink: 0;
}

.male-btn {
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    flex-shrink: 0;
    display: inline-block;
}

.male-btn-primary {
    background: #007bff;
    color: white;
}

.male-btn-secondary {
    background: #6c757d;
    color: white;
}

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

.male-btn:hover {
    opacity: 0.8;
}

.female-search-container {
    text-align: center;
    margin: 20px 0;
    margin-top: 100px;
}
.female-search-input {
    width: 80%;
    max-width: 400px;   
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}
.female-search-input:focus {
    border-color: #007bff;
}
.female-signups-container {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.female-signup-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap;
    width: 100%;
    min-height: 120px; /* Ensure consistent height */
}

.female-signup-info {
    flex-grow: 1;
    margin-left: 15px;
    min-width: 200px; /* Prevent text area from shrinking */
    flex-shrink: 1;
}

.female-signup-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 250px; /* Prevents shrinking */
    flex-wrap: nowrap;
    align-items: center;
}

.female-signup-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #007bff;
    flex-shrink: 0;
}

.female-btn {
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    flex-shrink: 0;
    display: inline-block;
}

.female-btn-primary {
    background: #007bff;
    color: white;
}

.female-btn-secondary {
    background: #6c757d;
    color: white;
}

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

.female-btn:hover {
    opacity: 0.8;
}

.matched-users-container {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);   
}

.matched-search-input {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

.matched-search-container {
    text-align: center;
    margin: 20px 0;
    margin-top: 100px;
}

.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.matched-users-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.matched-user-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
   
}

.matched-user-card:hover {
    transform: scale(1.05);
}

.matched-user-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.matched-user-actions .btn {
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.matched-user-actions .btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
}

.matched-user-actions .btn-danger {
    background-color: #dc3545;
    color: white;
    border: none;
}

.matched-user-actions .btn:hover {
    opacity: 0.8;
}

.user-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #ddd;
}

.status-text {
    font-weight: bold;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
}

.status-text.matched {
    background-color: #28a745;
    color: white;
}

.status-text.not-matched {
    background-color: #dc3545;
    color: white;
}

/* Profile Activity */
.profile-activity-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-top: 100px;
}

/* Left Section */
.left-section {
    width: 25%;
    height: 25%;
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.gallery-photo {
    width: 120px;
    height: 120px;
    border-radius: 5px;
}

/* Middle Section */
.middle-section {
    width: 50%;
}

.info-card {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Right Section */
.right-section {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-button {
    padding: 10px;
    font-size: 14px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.male-users-container {
    margin: 20px auto;
    max-width: 1200px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
}

.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* User List Grid */
.male-users-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Male User Card */
.male-user-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: calc(33.333% - 20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.male-user-card:hover {
    transform: scale(1.05);
}

/* Profile Photo */
.male-user-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #ddd;
}

/* User Info */
.male-user-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
}

/* Search Input */
.search-input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 300px;
    margin-right: 10px;
}

/* Status Styling */
.male-user-card.matched {
    background-color: #e0f7e0;
    border-left: 5px solid #28a745;
}

.male-user-card.not-matched {
    background-color: #f8d7da;
    border-left: 5px solid #dc3545;
}

/* Status Text */
.status-text {
    font-weight: bold;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
}

.status-text.matched {
    background-color: #28a745;
    color: white;
}

.status-text.not-matched {
    background-color: #dc3545;
    color: white;
}

.female-users-container {
    margin: 20px auto;
    max-width: 1200px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
}

.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* User List Grid */
.female-users-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Female User Card */
.female-user-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: calc(33.333% - 20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.female-user-card:hover {
    transform: scale(1.05);
}

/* Profile Photo */
.female-user-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #ddd;
}

/* Status Styling */
.female-user-card.matched {
    background-color: #e0f7e0;
    border-left: 5px solid #28a745;
}

.female-user-card.not-matched {
    background-color: #f8d7da;
    border-left: 5px solid #dc3545;
}


/* Assuming this is in public/css/user.css */
.user-dashboard-container {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
}



/* User Connected Container */
.user-connected-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full height */
    background-color: #ffffff;
}

/* Profile Image Wrapper */
.user-profile-image-wrapper {
    background-color: #000000; /* Black background */
    border-radius: 20px; /* Rounded corners */
    padding: 30px 20px;
    text-align: center;
    width: 350px; /* Adjust width as needed */
}

/* User Connected Container */
.user-connected-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full height */
    background-color: #ffffff;
}

/* Profile Image Wrapper */
.user-profile-image-wrapper {
    background-color: #000000; /* Black background */
    border-radius: 20px; /* Rounded corners */
    padding: 30px 20px;
    text-align: center;
    width: 350px; /* Adjust width as needed */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the text and image horizontally */
}

/* Connected Title */
.user-connected-title {
    font-size: 22px;
    font-family: 'DM Sans', sans-serif;
    font-weight: normal;
    color: black;
    background-color: white;
    margin-bottom: 20px;
    padding: 5px;
    width: 150px;
    text-align: center; /* Center text inside the box */
}

/* Profile Image */
.user-profile-image {
    width: 200px; /* Circle diameter */
    height: 200px;
    border-radius: 50%; /* Make it circular */
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #ffffff; /* Optional white border */
}

/* Connected Name */
.user-connected-name {
    font-size: 22px;
    font-family: 'DM Sans', sans-serif;
    font-weight: normal;
    color: black;
    background-color: white;
    margin-top: 10px;
    width: 150px;
    text-align: center; /* Center text inside the box */
    padding: 5px;
}

.settings-dropdown {
    position: relative;
    display: inline-block;
}

.settings-icon {
    cursor: pointer;
    font-size: 24px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 100;
    overflow: hidden;
}

.dropdown-menu .dropdown-item {
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f0f0f0;
}

.user-dashboard-header {
    background-color: #0b112b; /* Navy blue background */
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #9b59b6; /* Purple border */
    width: 100vw; /* Full width of the viewport */
    position: absolute; /* Fixed position at the top */
    top: 0; /* Align to the top */
    left: 0; /* Align to the left */
    z-index: 10; /* Ensure it stays on top of other elements */
}

.user-dashboard-header img {
    height: 50px; /* Adjust logo size */
    width: auto;
}

.user-dashboard-header h1 {
    font-size: 24px;
    margin: 0;
    flex-grow: 1;
    text-align: center;
}



/* Profile Photo Section */
.user-profile-settings-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-top: 100px;
}

.user-profile-settings-layout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.user-profile-photo-container {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.user-profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
}

.user-update-photo-btn {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.user-info-section {
    flex: 1;
    background-color: #000;
    padding: 20px;
}

.user-info-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.user-info-button {
    background-color: white;
    color: black;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
}

.user-bio-container {
    margin-top: 20px;
    text-align: center;
}

.user-bio-textarea {
    width: 100%;
    height: 150px;
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
}

.user-gallery-section {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.user-gallery-item {
    width: 100px;
    height: 100px;
    border: 2px dashed #747474;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.user-questionnaire-section {
    text-align: center;
    margin-top: 30px;
}

.user-questionnaire-button {
    background-color: white;
    color: black;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.user-gallery-label {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #0b1b4f; /* Match the theme */
}

.user-match-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin-top: 100px;
    
}

.user-match-left {
    flex: 1;
    text-align: center;
    margin-right: 20px;
}

.match-profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.match-name {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.match-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.user-match-center {
    flex: 2;
    margin-right: 20px;
    background-color: #000;
    padding: 20px;
    border-radius: 20px;
}


.user-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.info-button {
    flex: 1 1 calc(50% - 10px);
    padding: 10px;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.user-bio-container {
    margin-top: 20px;
}

.user-bio-textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.user-match-right {
    flex: 1;
    background-color: #000;
    padding: 20px;
    border-radius: 50px;
}

.chat-button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-button {
    padding: 10px;
    background-color: #cce5ff;
    border: none;
    border-radius: 5px;
    color: #003399;
    font-weight: bold;
}

/* Button Group Styling */
.button-group {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    align-items: center; /* Center buttons horizontally */
    gap: 10px; /* Add space between buttons */
}

/* Custom Secondary Button */
.custom-btn-secondary {
    background-color: #6c757d; /* Neutral gray */
    color: white; /* Text color */
    border: none; /* Remove default border */
    padding: 10px 20px; /* Adjust padding */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Adjust font size */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover transition */
}

.custom-btn-secondary:hover {
    background-color: #5a6268; /* Darker shade on hover */
    transform: scale(1.05); /* Slightly enlarge button on hover */
    cursor: pointer; /* Change cursor to pointer */
}

.custom-btn-secondary:active {
    background-color: #4e555b; /* Even darker shade when clicked */
    transform: scale(1); /* Reset scale on click */
}

.view-profile-container {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.view-profile-header {
    text-align: center;
    background: #007bff;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 100px;
}

.view-profile-photo-section {
    text-align: center;
    margin: 20px 0;
}

.view-profile-photo {
    border-radius: 50%;
    border: 3px solid #007bff;
    width: 150px;
    height: 150px;
}

.view-profile-info-section,
.view-non-public-section,
.view-personal-section {
    background: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.view-profile-info-section h3 {
    color: #007bff;
}

.view-non-public-section h3 {
    color: #dc3545;
}

.view-personal-section h3 {
    color: #28a745;
}

.view-profile-footer {
    text-align: center;
    margin-top: 20px;
}

.btn-primary {
    padding: 10px 20px;
    font-size: 16px;
}

.total-male-users-container {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.total-male-search-input {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

.total-male-search-container {
    text-align: center;
    margin: 20px 0;
    margin-top: 100px;
}

.total-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.total-male-users-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.total-male-user-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.total-male-user-card:hover {
    transform: scale(1.05);
}

.total-male-user-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #ddd;
}

.total-status-text {
    font-weight: bold;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
}

.total-status-text.total-matched {
    background-color: #28a745;
    color: white;
}

.total-status-text.total-not-matched {
    background-color: #dc3545;
    color: white;
}

.total-male-user-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.total-male-user-actions .btn {
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.total-male-user-actions .btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
}

.total-male-user-actions .btn-danger {
    background-color: #dc3545;
    color: white;
    border: none;
}

.total-male-user-actions .btn-success {
    background-color: #28a745;
    color: white;
    border: none;
}

.total-male-user-actions .btn:hover {
    opacity: 0.8;
}

.total-female-users-container {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.total-female-search-input {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

.total-female-search-container {
    text-align: center;
    margin: 20px 0;
    margin-top: 100px;
}

.total-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.total-female-users-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.total-female-user-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.total-female-user-card:hover {
    transform: scale(1.05);
}

.total-female-user-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #ddd;
}

.total-status-text {
    font-weight: bold;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
}

.total-status-text.total-matched {
    background-color: #28a745;
    color: white;
}

.total-status-text.total-not-matched {
    background-color: #dc3545;
    color: white;
}

.total-female-user-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.total-female-user-actions .btn {
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.total-female-user-actions .btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
}

.total-female-user-actions .btn-danger {
    background-color: #dc3545;
    color: white;
    border: none;
}

.total-female-user-actions .btn-success {
    background-color: #28a745;
    color: white;
    border: none;
}

.total-female-user-actions .btn:hover {
    opacity: 0.8;
}

.signups-container {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.signups-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    border-radius: 8px;
    overflow: hidden;

}
.signups-table thead {
    background: #007bff;
    color: white;
}
.signups-table th, .super-signups-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
   
}

.signups-table img {
    border-radius: 5px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .login-form {
        width: 90%;
        padding: 30px;
    }
}

@media screen and (max-width: 480px) {
    .login-form {
        width: 100%;
        padding: 20px;
    }

    .password-wrapper .show-password {
        font-size: 12px;
    }
}