/* Excellence Awards Public Styles */

.bb-awards-form-container {
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.bb-awards-form {
    padding: 30px;
}

.bb-awards-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e1e1e1;
}

.bb-awards-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.bb-awards-section h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073aa;
    display: inline-block;
}

.bb-form-row {
    margin-bottom: 20px;
}

.bb-form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .bb-form-row-2col {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.bb-form-field {
    display: flex;
    flex-direction: column;
}

.bb-form-field label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.bb-form-field input[type="text"],
.bb-form-field input[type="email"],
.bb-form-field input[type="tel"],
.bb-form-field select,
.bb-form-field textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.bb-form-field input:focus,
.bb-form-field select:focus,
.bb-form-field textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.bb-form-field textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.bb-radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

@media (max-width: 480px) {
    .bb-radio-group {
        flex-direction: column;
        gap: 10px;
    }
}

.bb-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal !important;
    margin-bottom: 0 !important;
}

.bb-radio-label input[type="radio"] {
    margin-right: 8px;
    margin-bottom: 0;
}

.bb-radio-label span {
    font-size: 16px;
}

.bb-field-error {
    color: #d63384;
    font-size: 14px;
    margin-top: 5px;
    min-height: 20px;
}

.bb-awards-submit-section {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e1e1e1;
}

.bb-awards-submit-btn {
    background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.bb-awards-submit-btn:hover {
    background: linear-gradient(135deg, #005177 0%, #003f5e 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 115, 170, 0.3);
}

.bb-awards-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.bb-submit-loading {
    display: inline-flex;
    align-items: center;
}

.bb-submit-loading::after {
    content: "";
    margin-left: 8px;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.bb-form-messages {
    margin-top: 20px;
}

.bb-form-success {
    background: #d1edff;
    border: 1px solid #0073aa;
    color: #005177;
    padding: 15px;
    border-radius: 6px;
    font-weight: 500;
}

.bb-form-error {
    background: #f8d7da;
    border: 1px solid #d63384;
    color: #721c24;
    padding: 15px;
    border-radius: 6px;
    font-weight: 500;
}

/* Winners Display Styles */
.bb-awards-winners {
    margin: 20px 0;
}

.bb-winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bb-winners-list .bb-winner-item {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e1e1e1;
}

.bb-winners-list .bb-winner-item:last-child {
    border-bottom: none;
}

.bb-winner-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bb-winners-grid .bb-winner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.bb-winner-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.bb-winners-list .bb-winner-photo {
    width: 150px;
    height: 150px;
    margin-right: 20px;
    border-radius: 8px;
    flex-shrink: 0;
}

.bb-winner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bb-winner-content {
    padding: 20px;
}

.bb-winners-list .bb-winner-content {
    padding: 0;
    flex: 1;
}

.bb-winner-name {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.bb-winner-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}


.bb-winner-reason {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.bb-winner-reason p {
    margin-bottom: 10px;
}

.bb-awards-no-winners {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.bb-awards-pagination {
    margin-top: 30px;
    text-align: center;
}

.bb-awards-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    background: white;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.bb-awards-pagination .page-numbers:hover,
.bb-awards-pagination .page-numbers.current {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

/* Intro Section */
.bb-awards-intro {
    margin-bottom: 30px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
    color: white;
    border-radius: 8px;
}

.bb-awards-intro h2 {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
}

.bb-awards-intro p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bb-awards-form {
        padding: 20px;
    }
    
    .bb-awards-section h3 {
        font-size: 18px;
    }
    
    .bb-form-field input,
    .bb-form-field select,
    .bb-form-field textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .bb-awards-submit-btn {
        width: 100%;
        padding: 18px 20px;
    }
    
    .bb-winners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bb-winners-list .bb-winner-item {
        flex-direction: column;
    }
    
    .bb-winners-list .bb-winner-photo {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .bb-awards-intro {
        padding: 20px;
    }
    
    .bb-awards-intro h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .bb-awards-form-container {
        margin: 10px;
        border-radius: 0;
    }
    
    .bb-form-row-2col {
        gap: 15px;
    }
    
    .bb-winner-name {
        font-size: 20px;
    }
}

/* GDPR Section Styles */
.bb-gdpr-info {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
    margin: 10px 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
}

.bb-gdpr-radio-group {
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.bb-gdpr-option {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex !important;
    align-items: flex-start !important;
}

.bb-gdpr-option:hover {
    border-color: #0073aa;
    box-shadow: 0 2px 4px rgba(0, 115, 170, 0.1);
}

.bb-gdpr-option input[type="radio"]:checked + span {
    font-weight: 600;
}

.bb-gdpr-option input[type="radio"] {
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.bb-gdpr-option span {
    line-height: 1.4;
}

/* Highlight the selected option */
.bb-gdpr-option:has(input[type="radio"]:checked) {
    border-color: #0073aa;
    background: #f0f8ff;
}

/* Special styling for "No" option to make it clear */
.bb-gdpr-option:has(input[value="no"]) {
    border-color: #dc3545;
    background: #fff5f5;
}

.bb-gdpr-option:has(input[value="no"]:checked) {
    border-color: #dc3545;
    background: #ffe6e6;
}

.bb-gdpr-option:has(input[value="no"]) span {
    color: #dc3545;
}

/* Accessibility Improvements */
.bb-form-field input:focus,
.bb-form-field select:focus,
.bb-form-field textarea:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

.bb-awards-submit-btn:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Nominations Display Styles */
.bb-awards-nominations {
    margin: 20px 0;
}

.bb-nominations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.bb-nominations-list .bb-nomination-item {
    display: block;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e1e1e1;
}

.bb-nominations-list .bb-nomination-item:last-child {
    border-bottom: none;
}

.bb-nomination-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #e1e1e1;
}

.bb-nominations-grid .bb-nomination-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.bb-nomination-content {
    padding: 20px;
}

.bb-nominee-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.bb-nominee-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
}

.bb-nominee-location,
.bb-nominee-department {
    display: inline;
}

.bb-nomination-reason {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 15px;
    border-left: 3px solid #f0f0f0;
    padding-left: 12px;
}

.bb-nomination-reason p {
    margin-bottom: 8px;
}

.bb-nomination-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
}

.bb-nominator-info {
    margin-bottom: 8px;
}

.bb-nominator-info small {
    color: #888;
    font-style: italic;
}

.bb-nomination-meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.bb-nomination-date {
    color: #888;
    font-size: 13px;
}

.bb-nomination-status {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bb-status-pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.bb-status-approved {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.bb-status-published {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.bb-status-rejected {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.bb-winner-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

.bb-winner-badge::before {
    content: "🏆";
    margin-right: 4px;
    font-size: 12px;
}

.bb-awards-no-nominations {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #e1e1e1;
}

/* Special styling for nominations with winners */
.bb-nomination-item:has(.bb-winner-badge) {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
}

/* Responsive adjustments for nominations */
@media (max-width: 768px) {
    .bb-nominations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bb-nominee-name {
        font-size: 18px;
    }
    
    .bb-nomination-meta-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .bb-nomination-content {
        padding: 15px;
    }
    
    .bb-nomination-reason {
        font-size: 14px;
    }
}

/* Navigation Bar Styles */
.bb-nominations-nav {
    background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 115, 170, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.bb-nav-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.bb-nav-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    height: 44px;
    box-sizing: border-box;
}

.bb-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

.bb-nav-btn.active {
    background: white;
    color: #0073aa;
    font-weight: 600;
    border-color: rgba(255, 255, 255, 0.3);
}

.bb-nav-icon {
    margin-right: 8px;
    font-size: 16px;
}

.bb-nav-search {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
}

.bb-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.bb-search-input-group {
    display: flex;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    min-width: 200px;
    height: 44px;
}

.bb-search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
}

.bb-search-input::placeholder {
    color: #999;
}

.bb-search-btn {
    background: #0073aa;
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
}

.bb-search-btn:hover {
    background: #005177;
}

.bb-search-icon {
    font-size: 16px;
}


/* Month Filter Styles */
.bb-nav-month-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bb-month-filter-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bb-month-select,
.bb-year-select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 12px 15px;
    color: #333;
    font-size: 14px;
    min-width: 120px;
    transition: all 0.3s ease;
    height: 44px;
    box-sizing: border-box;
    line-height: 1;
}

.bb-month-select:focus,
.bb-year-select:focus {
    outline: none;
    background: white;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bb-filter-btn,
.bb-clear-filters {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 25px;
    height: 44px;
    box-sizing: border-box;
}

/* Load More Button Styles */
.bb-load-more-container {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e1e1e1;
}

.bb-load-more-btn {
    background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 115, 170, 0.3);
}

.bb-load-more-btn:hover {
    background: linear-gradient(135deg, #005177 0%, #003f5e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 115, 170, 0.4);
}

.bb-load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 115, 170, 0.2);
}

.bb-load-more-btn.loading {
    position: relative;
    pointer-events: none;
}

.bb-load-more-btn.loading::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .bb-nominations-nav {
        padding: 15px;
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .bb-nav-buttons {
        gap: 10px;
        justify-content: center;
    }
    
    .bb-nav-btn {
        justify-content: center;
        padding: 12px 20px;
        flex: 1;
    }
    
    .bb-nav-month-filter {
        justify-content: center;
    }
    
    .bb-month-filter-form {
        width: 100%;
        justify-content: center;
    }
    
    .bb-month-select,
    .bb-year-select {
        min-width: 100px;
        flex: 1;
        max-width: 140px;
    }
    
    .bb-nav-search {
        justify-content: center;
    }
    
    .bb-search-input-group {
        width: 100%;
        min-width: auto;
    }
    
    .bb-search-form {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bb-nav-buttons {
        gap: 8px;
    }
    
    .bb-nav-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .bb-search-input {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 10px 15px;
    }
    
    .bb-search-btn {
        padding: 10px 15px;
    }
    
    .bb-load-more-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Loading state for nominations */
.bb-awards-nominations.loading {
    opacity: 0.7;
    pointer-events: none;
}

.bb-nomination-item.new-item {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search highlighting */
.bb-search-highlight {
    background: #fff3cd;
    padding: 1px 3px;
    border-radius: 2px;
    font-weight: 600;
}

/* Print Styles */
@media print {
    .bb-awards-submit-section,
    .bb-form-messages,
    .bb-nominations-nav,
    .bb-load-more-container {
        display: none;
    }
    
    .bb-awards-form-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .bb-nomination-item,
    .bb-winner-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
        margin-bottom: 15px;
    }
}

/* View Details Button Styles */
.bb-nomination-actions {
    margin-top: 10px;
    text-align: right;
}

.bb-view-details-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 115, 170, 0.2);
}

.bb-view-details-btn:hover {
    background: linear-gradient(135deg, #005177 0%, #003f5e 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
    color: white;
    text-decoration: none;
}

/* Praise Detail Page Styles */
.bb-praise-detail {
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.bb-praise-back-nav {
    padding: 20px 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.bb-back-link {
    display: inline-flex;
    align-items: center;
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.bb-back-link:hover {
    color: #005177;
    transform: translateX(-3px);
    text-decoration: none;
}

.bb-back-arrow {
    margin-right: 8px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.bb-back-link:hover .bb-back-arrow {
    transform: translateX(-2px);
}

.bb-praise-detail-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    color: white;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.bb-praise-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(50px, -50px);
}

.bb-praise-detail-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    position: relative;
    z-index: 2;
}

.bb-praise-detail-meta {
    font-size: 16px;
    margin-bottom: 16px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.bb-praise-detail-date {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.bb-praise-external-text {
    font-style: italic;
}

.bb-praise-nominator {
    font-weight: 600;
}

.bb-praise-winner-badge-large {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    position: relative;
    z-index: 2;
}

.bb-winner-icon {
    margin-right: 8px;
    font-size: 20px;
}

.bb-praise-detail-body {
    padding: 30px;
}

.bb-praise-nominees-section {
    margin-bottom: 30px;
}

.bb-praise-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073aa;
    display: inline-block;
}

.bb-praise-nominee-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #e9ecef;
}

.bb-nominee-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bb-avatar-icon {
    font-size: 36px;
    color: white;
}

.bb-nominee-info {
    flex: 1;
}

.bb-nominee-name-large {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.bb-nominee-department-large,
.bb-nominee-location-large {
    color: #666;
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 500;
}

.bb-praise-content-section {
    margin-bottom: 30px;
    position: relative;
}

.bb-praise-quote-icon {
    position: absolute;
    z-index: 100;
    top: -10px;
    left: -10px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bb-praise-reason-full {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px 30px 25px 50px;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    border-left: 4px solid #0073aa;
    margin-left: 20px;
    position: relative;
}

.bb-praise-reason-full p {
    margin-bottom: 15px;
}

.bb-praise-reason-full p:last-child {
    margin-bottom: 0;
}

.bb-praise-impact-section,
.bb-praise-witness-section {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.bb-impact-title,
.bb-witness-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
}

.bb-impact-content,
.bb-witness-content {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

.bb-praise-nominator-section {
    background: #f1f3f4;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.bb-nominator-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.bb-nominator-details p {
    margin-bottom: 8px;
    color: #555;
    font-size: 15px;
}

.bb-nominator-details strong {
    color: #333;
}

.bb-nominator-type {
    color: #0073aa;
    font-weight: 600;
}

.bb-praise-error {
    text-align: center;
    color: #dc3545;
    font-style: italic;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

/* Responsive Design for Detail View */
@media (max-width: 768px) {
    .bb-praise-detail {
        margin: 10px;
        border-radius: 8px;
    }
    
    .bb-praise-back-nav {
        padding: 15px 20px;
    }
    
    .bb-praise-detail-header {
        padding: 30px 20px;
    }
    
    .bb-praise-detail-title {
        font-size: 28px;
    }
    
    .bb-praise-detail-body {
        padding: 20px;
    }
    
    .bb-praise-nominee-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .bb-nominee-avatar {
        width: 70px;
        height: 70px;
    }
    
    .bb-avatar-icon {
        font-size: 32px;
    }
    
    .bb-nominee-name-large {
        font-size: 22px;
    }
    
    .bb-praise-reason-full {
        padding: 25px 20px 20px 20px;
        margin-left: 0;
        font-size: 16px;
    }
    
    .bb-praise-quote-icon {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto 20px auto;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .bb-praise-detail-header {
        padding: 25px 15px;
    }
    
    .bb-praise-detail-title {
        font-size: 24px;
    }
    
    .bb-praise-detail-body {
        padding: 15px;
    }
    
    .bb-praise-nominee-card,
    .bb-praise-impact-section,
    .bb-praise-witness-section,
    .bb-praise-nominator-section {
        padding: 20px;
    }
    
    .bb-praise-reason-full {
        padding: 20px 15px;
        font-size: 15px;
    }
    
    .bb-praise-winner-badge-large {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .bb-winner-icon {
        font-size: 18px;
    }
}