.rally-crowd-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Flashy Welcome Section (Removed pulse animation) */
.rally-crowd-welcome {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-bottom: 20px;
}
.rally-crowd-program-name {
    margin: 0 0 10px;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.rally-crowd-welcome-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.rally-crowd-points-badge {
    margin-top: 10px;
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 12px 25px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.rally-crowd-points-text {
    font-size: 22px;
    font-weight: 700;
}

/* Section Banner */
.rally-crowd-section-banner {
    background: linear-gradient(90deg, #f5f5f5, #e0e0e0);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
}
.rally-crowd-section-banner h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Title Styling */
.rally-crowd-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

/* Grid layout for badges */
.rally-crowd-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

/* Card styling for badges */
.rally-crowd-badge-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rally-crowd-badge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Badge image styling */
.rally-crowd-badge-image {
    flex-shrink: 0;
}
.rally-crowd-badge-placeholder {
    width: 60px;
    height: 60px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 12px;
    border-radius: 4px;
}

/* Badge info styling */
.rally-crowd-badge-info {
    flex-grow: 1;
}
.rally-crowd-badge-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}
.rally-crowd-badge-tier {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

/* Grid layout for shareable links */
.rally-crowd-share-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

/* Card styling for shareable links */
.rally-crowd-share-link-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rally-crowd-share-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Share link info styling */
.rally-crowd-share-link-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.rally-crowd-share-link-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
.rally-crowd-share-link-title span.dashicons {
    font-size: 24px;
    vertical-align: middle;
    margin-right: 8px;
    color: #333;
}
.rally-crowd-share-link-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.rally-crowd-share-link-title a:hover {
    color: #0073aa;
}

/* Share link actions styling */
.rally-crowd-share-link-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rally-crowd-share-link-url {
    flex-grow: 1;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rally-crowd-copy-link {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}
.rally-crowd-copy-link:hover {
    background-color: #005d82;
}
.rally-crowd-copy-link.copied {
    background-color: #1e7e34 !important;
    color: #fff !important;
}

/* Share container styling */
.rally-crowd-share-container {
    margin-top: 10px;
    padding: 10px;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
}
.rally-crowd-share-buttons {
    display: flex;
    gap: 8px;
}
.rally-crowd-share-button {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    transition: background-color 0.3s ease;
}
.rally-crowd-share-button.rally-crowd-share-x {
    background-color: #000000; /* Black for X branding */
}
.rally-crowd-share-button.rally-crowd-share-x:hover {
    background-color: #333333; /* Slightly lighter black on hover */
}
.rally-crowd-share-button.rally-crowd-share-twitter {
    background-color: #1da1f2;
}
.rally-crowd-share-button.rally-crowd-share-twitter:hover {
    background-color: #1a91da;
}
.rally-crowd-share-button.rally-crowd-share-facebook {
    background-color: #3b5998;
}
.rally-crowd-share-button.rally-crowd-share-facebook:hover {
    background-color: #344e86;
}
.rally-crowd-share-button.rally-crowd-share-linkedin {
    background-color: #0077b5;
}
.rally-crowd-share-button.rally-crowd-share-linkedin:hover {
    background-color: #00669c;
}

.rally-crowd-nickname-update {
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.rally-crowd-nickname-update h2 {
    margin-top: 0;
}

.rally-crowd-nickname-accordion {
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
}
.rally-crowd-nickname-accordion summary {
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}
.rally-crowd-nickname-accordion .rally-crowd-nickname-update {
    padding: 15px;
}

/* Grid layout for content cards */
.rally-crowd-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Card styling */
.rally-crowd-content-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rally-crowd-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Thumbnail styling */
.rally-crowd-content-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}
.rally-crowd-content-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}
.rally-crowd-content-card:hover .rally-crowd-content-thumbnail {
    transform: scale(1.05);
}
.rally-crowd-content-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

/* Content info styling */
.rally-crowd-content-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.rally-crowd-content-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    min-height: 50px;
    max-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Actions styling */
.rally-crowd-content-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.rally-crowd-content-button {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}
.rally-crowd-content-button:hover {
    background-color: #005d82;
}

/* Share link styling */
.rally-crowd-share-link {
    display: flex;
    gap: 8px;
    align-items: center;
}
.rally-crowd-share-link-url {
    flex-grow: 1;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Accordion and table styles */
.rally-crowd-shortlinks-accordion {
    margin-bottom: 20px;
}
.rally-crowd-shortlinks-accordion summary {
    cursor: pointer;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-weight: bold;
}
.rally-crowd-shortlinks-accordion summary:hover {
    background-color: #e0e0e0;
}
.rally-crowd-shortlinks-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.rally-crowd-shortlinks-table th,
.rally-crowd-shortlinks-table td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
.rally-crowd-shortlinks-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}
.rally-crowd-shortlinks-table tr:hover {
    background-color: #f9f9f9;
    position: relative;
}
.rally-crowd-shortlink-row:hover::after {
    content: attr(data-url);
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* New Prize Gallery Styling */
.rally-crowd-prize-gallery {
    padding: 20px;
    background: linear-gradient(135deg, #ffcc00, #ff6600);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    animation: glow 3s infinite alternate;
}
.rally-crowd-prize-callout {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.rally-crowd-prize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.rally-crowd-prize-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    padding: 15px;
}
.rally-crowd-prize-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.rally-crowd-prize-card.selected {
    border: 3px solid #ff6600;
    background: #fff9e6;
}
.rally-crowd-prize-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}
.rally-crowd-prize-thumbnail {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.rally-crowd-prize-card:hover .rally-crowd-prize-thumbnail {
    transform: scale(1.1);
}
.rally-crowd-prize-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ddd, #bbb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 16px;
    text-transform: uppercase;
}
.rally-crowd-prize-info {
    padding: 15px;
    text-align: center;
}
.rally-crowd-prize-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}
.rally-crowd-prize-points {
    margin: 0 0 10px;
    font-size: 18px;
    color: #e63946;
    font-weight: 600;
}
.rally-crowd-prize-desc {
    margin: 0 0 15px;
    font-size: 14px;
    color: #666;
    min-height: 60px;
    max-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.rally-crowd-select-prize {
    background: linear-gradient(90deg, #ff6600, #ffcc00);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rally-crowd-select-prize:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.5);
}
.rally-crowd-prize-request-form {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slide-up 0.5s ease;
}
.rally-crowd-prize-request-form.bounce-in {
    animation: bounce-in 0.5s ease;
}
.rally-crowd-prize-form-card {
    background: linear-gradient(135deg, #fff9e6, #fff);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
}
.rally-crowd-prize-form-header {
    text-align: center;
    margin-bottom: 20px;
}
.rally-crowd-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.rally-crowd-prize-form-body {
    margin-bottom: 20px;
}
.rally-crowd-form-field {
    margin-bottom: 15px;
    transition: opacity 0.3s ease;
}
.rally-crowd-form-field.fade-in {
    opacity: 1;
}
.rally-crowd-form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.rally-crowd-form-textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #ffcc00;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fff9e6;
    resize: vertical;
    transition: border-color 0.3s ease;
}
.rally-crowd-form-textarea:focus {
    border-color: #ff6600;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
}
.rally-crowd-prize-form-footer {
    text-align: center;
}
.rally-crowd-submit-prize {
    background: linear-gradient(90deg, #28a745, #34c759);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rally-crowd-submit-prize:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.5);
}

/* New Pending Prize Section Styling */
.rally-crowd-pending-prize-section {
    padding: 20px;
    background: linear-gradient(135deg, #ffcc00, #ff6600);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    animation: glow 3s infinite alternate;
    margin-bottom: 20px;
}
.rally-crowd-pending-callout {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.rally-crowd-pending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.rally-crowd-pending-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}
.rally-crowd-pending-card:hover {
    transform: translateY(-5px);
}
.rally-crowd-pending-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}
.rally-crowd-pending-thumbnail {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.rally-crowd-pending-card:hover .rally-crowd-pending-thumbnail {
    transform: scale(1.1);
}
.rally-crowd-pending-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ddd, #bbb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 12px;
    text-transform: uppercase;
}
.rally-crowd-pending-info {
    flex-grow: 1;
    text-align: left;
}
.rally-crowd-pending-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}
.rally-crowd-pending-points {
    margin: 0 0 10px;
    font-size: 18px;
    color: #e63946;
    font-weight: 600;
}
.rally-crowd-pending-status {
    margin: 0;
    font-size: 16px;
    color: #666;
}
.rally-crowd-status-tag {
    background: #28a745;
    color: #fff;
    padding: 4px 8px;
    border-radius: 10px;
    font-weight: 600;
}
.rally-crowd-pending-message {
    text-align: center;
    font-size: 16px;
    color: #fff;
    font-style: italic;
}

/* New Claimed Prize Section Styling */
.rally-crowd-claimed-prize-section {
    padding: 20px;
    background: linear-gradient(135deg, #28a745, #34c759);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    animation: glow 3s infinite alternate;
    margin-bottom: 20px;
}
.rally-crowd-claimed-callout {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.rally-crowd-claimed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.rally-crowd-claimed-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}
.rally-crowd-claimed-card:hover {
    transform: translateY(-5px);
}
.rally-crowd-claimed-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}
.rally-crowd-claimed-thumbnail {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.rally-crowd-claimed-card:hover .rally-crowd-claimed-thumbnail {
    transform: scale(1.1);
}
.rally-crowd-claimed-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ddd, #bbb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 12px;
    text-transform: uppercase;
}
.rally-crowd-claimed-info {
    flex-grow: 1;
    text-align: left;
}
.rally-crowd-claimed-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}
.rally-crowd-claimed-points {
    margin: 0 0 10px;
    font-size: 18px;
    color: #e63946;
    font-weight: 600;
}
.rally-crowd-claimed-status {
    margin: 0 0 10px;
    font-size: 16px;
    color: #666;
}
.rally-crowd-claimed-details {
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 5px;
}
.rally-crowd-claimed-details h5 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.rally-crowd-claimed-details p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}
.rally-crowd-claimed-details a {
    color: #0073aa;
    text-decoration: none;
}
.rally-crowd-claimed-details a:hover {
    text-decoration: underline;
}

/* New No Prizes Section Styling */
.rally-crowd-no-prizes-section {
    padding: 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
    text-align: center;
}
.rally-crowd-no-prizes-callout {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.rally-crowd-no-prizes-message {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.5;
}
.rally-crowd-no-prizes-cta {
    margin-top: 20px;
}
.rally-crowd-earn-points-button {
    background: linear-gradient(90deg, #ff6600, #ffcc00);
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rally-crowd-earn-points-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.5);
}

/* New Monthly Prize Section Styling */
.rally-crowd-monthly-prize-section {
    padding: 20px;
    background: linear-gradient(135deg, #00c4b4, #007bff);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    animation: glow 3s infinite alternate;
    margin-bottom: 20px;
}
.rally-crowd-monthly-callout {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.rally-crowd-monthly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.rally-crowd-monthly-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}
.rally-crowd-monthly-card:hover {
    transform: translateY(-5px);
}
.rally-crowd-monthly-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}
.rally-crowd-monthly-thumbnail {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.rally-crowd-monthly-card:hover .rally-crowd-monthly-thumbnail {
    transform: scale(1.1);
}
.rally-crowd-monthly-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ddd, #bbb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 12px;
    text-transform: uppercase;
}
.rally-crowd-monthly-info {
    flex-grow: 1;
    text-align: left;
}
.rally-crowd-monthly-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}
.rally-crowd-monthly-points {
    margin: 0 0 10px;
    font-size: 18px;
    color: #e63946;
    font-weight: 600;
}
.rally-crowd-monthly-desc {
    margin: 0 0 15px;
    font-size: 14px;
    color: #666;
}
.rally-crowd-progress-bar {
    background-color: #e0e0e0;
    border-radius: 10px;
    height: 20px;
    margin: 10px 0;
    overflow: hidden;
}
.rally-crowd-progress {
    background: linear-gradient(90deg, #00c4b4, #007bff);
    height: 100%;
    transition: width 0.5s ease;
}
.rally-crowd-progress-text {
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}
.rally-crowd-past-winners {
    margin-top: 20px;
    text-align: center;
}
.rally-crowd-past-winners h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.rally-crowd-past-winners ul {
    list-style: none;
    padding: 0;
}
.rally-crowd-past-winners li {
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
}
.rally-crowd-prize-claimed {
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
}

/* Animations */
@keyframes glow {
    0% { box-shadow: 0 0 10px #ffcc00; }
    100% { box-shadow: 0 0 20px #ff6600; }
}
@keyframes slide-up {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes bounce-in {
    0% { transform: scale(0.8); opacity: 0; }
    60% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .rally-crowd-dashboard {

        padding: 5px;
    }

    .rally-crowd-share-link-card {

        padding: 5px !important;
        max-width: 99%;

    }

    .rally-crowd-share-link-actions {
        /* display: flex
    ; */
        /* align-items: center; */
        gap: 3px;
    }

}