/* user-profiles/user-profile.css */

/* Import root variables if needed from main CSS, or redefine them */
/* Option 1: Import (if your setup supports CSS imports) */
 @import url('/Styles/index.css'); 

/* Option 2: Redefine necessary variables */
:root {
    --yelp-red: #d32323;
    --yelp-dark: #333;
    --yelp-light: #f5f5f5;
    --border-light: #eee;
    --border-medium: #ccc;
    --error-red: #d32f2f;
    /* Add any other needed variables */
}


/* Container for the main profile content */
.profile-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px 5%;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Main heading for the profile page */
.profile-container h1 {
    text-align: center;
    color: var(--yelp-red);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
    font-size: 1.8rem; /* Adjust size */
}

/* Header section within the profile (pic, name, location) */
.profile-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

/* Placeholder for the profile picture */
.profile-pic-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--yelp-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 3px solid var(--border-light);
    color: var(--border-medium);
}

/* Style for the FontAwesome icon inside the placeholder */
.profile-pic-placeholder i {
    font-size: 3rem; /* Adjust icon size */
}

/* Username display */
.profile-header h2 {
    margin: 0 0 5px 0;
    font-size: 1.8rem;
    color: var(--yelp-dark);
}

/* Location display */
.profile-header p#profile-location { /* More specific selector */
    margin: 0;
    color: #666;
    font-size: 1rem;
}
.profile-header p#profile-location i { /* Location icon */
    margin-right: 5px;
    color: var(--yelp-red);
}

/* Edit button (initially hidden or shown based on logic) */
#edit-profile-btn {
    /* Uses general .btn styles from index.css if linked, or define here */
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 12px;
    font-size: 0.9rem;
    /* Add general .btn styles here if not importing index.css */
    /* background: var(--yelp-red); color: white; border: none; ... */
}

/* Sections for details and reviews */
.profile-details,
.profile-reviews {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}
.profile-reviews {
     border-bottom: none; /* No border on the last section */
}

/* Headings for "About Me", "Interests", "My Reviews" */
.profile-details h3,
.profile-reviews h3 {
    font-size: 1.3rem;
    color: var(--yelp-dark);
    margin-bottom: 15px;
}

/* User's bio paragraph */
.profile-details p#profile-bio { /* More specific selector */
    line-height: 1.7;
    color: #444;
    white-space: pre-wrap; /* Preserve line breaks user might enter */
}

/* Container for tags */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Individual tag styling */
.profile-tag {
    display: inline-block;
    background-color: var(--yelp-light);
    color: var(--yelp-dark);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid var(--border-medium);
    cursor: default; /* Indicate it's not clickable (yet) */
}

/* Placeholder text styling */
.tag-placeholder,
#profile-reviews-list p { /* Style placeholder paragraphs */
    color: #888;
    font-style: italic;
}

/* Loading/Error messages specific to profile page */
#loading-profile,
#profile-error {
     text-align: center;
     padding: 20px;
     font-size: 1.1rem;
     color: #555;
}
#profile-error {
     color: var(--error-red);
}

/* Responsive adjustments for profile page */
@media (max-width: 768px) {
    .profile-container {
        margin: 20px auto;
        padding: 15px 4%;
    }
    .profile-header h2 { font-size: 1.5rem; }
    .profile-details h3,
    .profile-reviews h3 { font-size: 1.2rem; }

    /* Make edit button block level on mobile if needed */
    #edit-profile-btn {
        position: static;
        display: block;
        width: auto; /* Or 100% if desired */
        margin: 15px auto 0; /* Center if width is auto */
    }

    .profile-pic-placeholder {
        width: 80px;
        height: 80px;
    }
    .profile-pic-placeholder i {
        font-size: 2.5rem;
    }
}

/* user-profiles/user-profile.css */

/* ... (keep all previous styles for profile display) ... */


/* ======================
   EDIT PROFILE MODAL STYLES
   ====================== */

/* Reuse auth-modal background and centering */
#edit-profile-modal {
    /* Inherits from .auth-modal in index.css if linked, */
    /* otherwise define base modal styles here */
    display: none;
    position: fixed;
    z-index: 1001; /* Ensure it's above profile content */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.6);
    padding-top: 5vh;
    padding-bottom: 5vh;
}

/* Styling for the form inside the edit modal */
#edit-profile-form {
    /* Inherits from .auth-modal form styles if index.css is linked */
    /* Otherwise define base form styles: */
    background-color: white;
    margin: 0 auto;
    padding: 30px 25px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px; /* Slightly wider for more fields */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#edit-profile-form h3 {
    color: var(--yelp-red);
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

/* Use existing form-group, form-control styles from index.css */
/* If not linking index.css, add styles for .form-group, label, .form-control here */

#edit-profile-form .form-group small { /* Helper text for tags */
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666;
}

/* Ensure buttons use consistent styling */
#edit-profile-form .btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    font-size: 1rem;
    /* Inherits .btn base style from index.css */
}

#edit-profile-form #save-profile-button {
    /* Primary action button style (uses .btn base) */
    background-color: var(--yelp-red);
    color: white;
}
#edit-profile-form #save-profile-button:hover {
    background-color: #b71c1c;
}
#edit-profile-form #save-profile-button:disabled {
    background-color: #f8baba;
    cursor: not-allowed;
}


#edit-profile-form #cancel-edit-button {
    /* Secondary/Cancel button style */
    background-color: #e0e0e0;
    color: var(--yelp-dark);
}
#edit-profile-form #cancel-edit-button:hover {
     background-color: #bdbdbd;
}

/* Status message paragraph */
#edit-profile-status {
    /* Uses .status-message styles from index.css */
    /* Or define here: */
    padding: 10px 15px;
    margin-top: 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid transparent;
}
#edit-profile-status:empty { display: none; }
/* Add success/error classes if not defined in index.css */
/*
#edit-profile-status.success { background-color: var(--success-light); ... }
#edit-profile-status.error { background-color: var(--error-light); ... }
*/

/* ======================
   EDIT PROFILE MODAL STYLES (Additions/Updates)
   ====================== */

/* (Keep existing modal base styles: #edit-profile-modal, #edit-profile-form, h3, etc.) */

/* Form Group Styling (Ensure consistent spacing) */
#edit-profile-form .form-group {
    margin-bottom: 20px; /* Consistent bottom margin */
}
#edit-profile-form .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: bold;
}
#edit-profile-form .form-control {
     /* Ensure existing styles are sufficient */
     width: 100%;
     padding: 10px; /* Or 12px */
     border: 1px solid var(--border-medium);
     border-radius: 4px;
     font-size: 1rem;
     box-sizing: border-box;
}
#edit-profile-form textarea.form-control {
     min-height: 80px; /* Adjust textarea height */
}

/* Profile Image Upload Specific Styles */
.profile-image-edit-group label {
    margin-bottom: 10px; /* Space below label */
}
#edit-profile-image-upload {
    /* Use default browser styling or style a custom button triggering it */
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}
#edit-profile-image-preview {
    display: none; /* Hidden initially */
    max-width: 150px; /* Limit preview size */
    max-height: 150px;
    border-radius: 50%; /* Circular preview */
    border: 2px solid var(--border-light);
    margin: 10px 0;
    object-fit: cover; /* Ensure image covers the area nicely */
}
#remove-profile-image-button {
    background: none;
    border: none;
    color: var(--yelp-red);
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-size: 0.85rem;
    display: block; /* Put on its own line */
    margin-top: 5px;
    margin-bottom: 5px;
}
#remove-profile-image-button:hover {
     color: #a01c1c;
}

#edit-profile-form .form-group small { /* Helper text style */
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666;
}

/* Location Dropdown/Input */
#edit-location-other {
    margin-top: 10px; /* Space when it appears */
}

/* Tags Input & Suggestions */
.suggested-tags-container {
    margin-top: 10px;
    padding: 10px;
    background-color: var(--yelp-light);
    border: 1px solid var(--border-light);
    border-radius: 4px;
}
.suggested-tags-container small {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 0.9rem;
}
#suggested-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.suggested-tag { /* Styling for clickable suggested tags */
    display: inline-block;
    background-color: #e0e0e0;
    color: var(--yelp-dark);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border: 1px solid #ccc;
}
.suggested-tag:hover {
    background-color: #bdbdbd;
}
/* Styles for user-profile.css */

.profile-reviews h3 {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.user-review-item {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.user-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
}

.user-review-business-link {
    font-weight: bold;
    color: var(--yelp-red); /* Use your theme color */
    text-decoration: none;
}
.user-review-business-link:hover {
    text-decoration: underline;
}

.user-review-date {
    font-size: 0.85rem;
    color: #777;
}

.user-review-rating .stars {
    color: #f5c518; /* Or your star color */
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: inline-block; /* Or block */
}

.user-review-text {
    margin-top: 5px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #333;
}

.user-review-photo {
    max-width: 150px; /* Adjust size as needed */
    max-height: 150px;
    border-radius: 4px;
    margin-top: 10px;
    display: block; /* Or inline-block */
    object-fit: cover;
}

.loading-reviews,
.error-message {
    color: #777;
    padding: 20px;
    text-align: center;
}

.error-message {
    color: var(--yelp-red); /* Or your error color */
}


/* Add these styles to the end of user-profile.css */

.profile-streaks {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.profile-streaks h3 {
    font-size: 1.3rem;
    color: var(--yelp-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-streaks h3 .fa-fire-alt {
    color: #f57c00; /* A fiery orange color */
}

#profile-streaks-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.loading-streaks,
.no-streaks-message {
    grid-column: 1 / -1; /* Make message span the full width */
    color: #888;
    font-style: italic;
    text-align: center;
    padding: 20px 0;
}

/* Individual Streak Card */
.streak-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.streak-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.streak-card-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: var(--yelp-light);
}

.streak-card-info {
    flex-grow: 1;
}

.streak-card-business-name {
    font-weight: bold;
    font-size: 1rem;
    color: var(--yelp-dark);
    margin: 0 0 5px 0;
}

.streak-card-details {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #f57c00;
}

.streak-card-details .streak-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: normal;
    margin-left: 2px;
}

/* Add these styles to the end of user-profile.css */

.profile-rewards-stats {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between the points and reviews items */
    margin-top: 20px;
    padding: 15px;
    background-color: var(--yelp-light);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    max-width: 400px; /* Optional: constrain width */
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--yelp-red);
    margin-bottom: 5px;
}

.stat-item span {
    display: block;
}

/* The big number for points/reviews */
#profile-points-display,
#profile-reviews-count-display {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--yelp-dark);
    line-height: 1.1;
}

/* The small label underneath */
.stat-item .stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 3px;
}

/* Add these styles to the end of user-profile.css */

.profile-rewards {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.profile-rewards h3 {
    font-size: 1.3rem;
    color: var(--yelp-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-rewards h3 .fa-award {
    color: var(--star-gold); /* Gold for awards */
}

.rewards-subsection {
    margin-bottom: 25px;
}

.rewards-subsection h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: #444;
    padding-bottom: 5px;
    border-bottom: 1px dashed var(--border-medium);
}

.history-list {
    max-height: 300px; /* Limit height and make it scrollable */
    overflow-y: auto;
    padding-right: 10px; /* Space for scrollbar */
}

/* Styling for loading/empty messages */
.loading-wins, .no-wins-message,
.loading-points-history, .no-points-history-message {
    color: #888;
    font-style: italic;
    padding: 15px 0;
}

/* Individual list item styling */
.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
}
.history-item:last-child {
    border-bottom: none;
}

.history-item-description {
    color: #333;
}

.history-item-description .fa-check-circle {
    color: var(--success-green);
    margin-right: 5px;
}

.history-item-points {
    font-weight: bold;
    color: var(--success-green); /* Green for positive points */
}

.history-item-date {
    font-size: 0.85rem;
    color: #777;
    margin-left: 15px;
}

/* Add these styles to user-profile.css */

.streak-card-container {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.streak-card-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.streak-card-main-link {
    text-decoration: none;
    color: inherit;
    flex-grow: 1; /* Allows the main link to take up all space except the actions */
}

/* We only need to adjust the original .streak-card slightly */
.streak-card {
    border: none;
    box-shadow: none;
    padding-bottom: 10px; /* Give a bit of space above the actions area */
}

.streak-card-actions {
    padding: 0 15px 15px 15px; /* Padding for the button area */
    text-align: center;
    border-top: 1px solid var(--border-light);
    padding-top: 10px;
    margin-top: -5px; /* Pull it a bit closer to the card content */
}

.btn-leaderboard {
    /* Uses .btn and .btn-small from index.css. Let's make it secondary style */
    background-color: white;
    color: var(--yelp-red);
    border: 1px solid var(--yelp-red);
    width: 100%;
}

.btn-leaderboard:hover {
    background-color: var(--yelp-light);
}

/* Add to user-profile.css */
.rewards-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.rewards-header h4 {
    margin: 0; /* Remove default margin from h4 */
    border-bottom: none; /* We don't need the dashed line anymore */
}

#my-wins-button {
    /* Uses .btn and .btn-small from index.css */
    flex-shrink: 0; /* Prevent button from shrinking */
}

/* Add this to the end of user-profile.css */

.streak-card-stats-container {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between the streak and points display */
}

/* Make the weekly points display slightly different */
.streak-card-details.weekly-points {
    color: var(--star-gold);
}

/* In Styles/user-profile.css, add these new rules at the end */

/* ============================================= */
/* ===== NEW: Loyalty Card Section Styles ====== */
/* ============================================= */

.profile-loyalty-cards {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.profile-loyalty-cards h3 {
    font-size: 1.3rem;
    color: var(--yelp-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-loyalty-cards h3 .fa-ticket-alt {
    color: var(--link-blue); /* A distinct color for this section */
}

#profile-loyalty-cards-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.loading-loyalty-cards,
.no-loyalty-cards-message {
    grid-column: 1 / -1; /* Make message span the full width */
    color: #888;
    font-style: italic;
    text-align: center;
    padding: 20px 0;
}

/* Individual Loyalty Card */
.loyalty-card {
    background-color: #fff;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
    overflow: hidden; /* To keep top banner contained */
    display: flex;
    flex-direction: column;
}

.loyalty-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--yelp-dark);
    color: white;
    padding: 12px 15px;
}

.loyalty-card-image {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.loyalty-card-business-name {
    font-size: 1.1rem;
    font-weight: bold;
}

.loyalty-card-body {
    padding: 15px;
    flex-grow: 1; /* Pushes footer down */
}

.stamp-grid {
    display: grid;
    /* We'll aim for 5 columns, suitable for 5 and 10 stamps */
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.stamp {
    aspect-ratio: 1 / 1; /* Makes the stamp a perfect square */
    border: 2px dashed var(--border-medium);
    border-radius: 50%; /* Makes it a circle */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--yelp-light);
}

.stamp.filled {
    background-color: #fff8e1; /* A light gold/yellow */
    border-style: solid;
    border-color: var(--star-gold);
    color: var(--star-gold);
    font-size: 1.5rem; /* For the icon inside */
    animation: stamp-pop 0.3s ease-out;
}

@keyframes stamp-pop {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.loyalty-card-footer {
    text-align: center;
    padding: 15px;
    background-color: var(--yelp-light-grey);
    border-top: 1px solid var(--border-light);
}

.reward-description {
    font-size: 0.9rem;
    color: var(--yelp-dark);
    margin: 0;
}

.reward-description strong {
    color: var(--success-green);
}

.progress-text {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--yelp-grey);
    margin-top: 5px;
}

/* In Styles/user-profile.css, add these styles */

.profile-short-id-container {
    margin: 25px auto 15px auto; /* Add space around it */
    padding: 15px 20px;
    border: 2px dashed var(--yelp-red);
    border-radius: 8px;
    max-width: 300px;
    text-align: center;
    background-color: #fff9f9;
}

.profile-short-id-container label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--yelp-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.short-id-code {
    font-family: 'Courier New', Courier, monospace; /* A classic code font */
    font-size: 2.5rem; /* Make the code large */
    font-weight: bold;
    color: var(--yelp-red);
    letter-spacing: 5px; /* Space out the numbers */
    margin: 5px 0;
}

.profile-short-id-container small {
    font-size: 0.85rem;
    color: var(--yelp-grey);
}

/* In Styles/user-profile.css, add these styles at the end */

/* ============================================= */
/* ===== NEW: Profile Notification Popup Styles ====== */
/* ============================================= */

/* We reuse the class names from the streak popup for consistency */
.streak-overlay {
    position: fixed; /* This is the most important rule: it lifts the element out of the normal page flow */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000; /* A high z-index ensures it's on top of all other content */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 15px;
    box-sizing: border-box;
}

.streak-popup-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 40px 20px;
    animation: zoomIn 0.3s ease-out;
    max-width: 400px;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-streak-popup {
    position: absolute;
    top: 0px;
    right: 0px;
    background: white;
    color: black;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 30px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#profile-notification-icon {
    font-size: 80px; /* Big icon */
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

#profile-notification-title {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
    color: white;
}

#profile-notification-message {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

#profile-notification-message strong {
    color: white;
}

.streak-popup-actions {
    display: flex;
    justify-content: center; /* Center the single button */
    gap: 15px;
    width: 100%;
    margin: 0 auto;
}

.streak-popup-actions .btn {
    width: auto; /* Let the button size itself */
    min-width: 150px;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 25px;
}