.text-message-page h3 {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

.text-message-page h3 {
    font-weight: 400;
}

.text-message-page h3 > span small {
    font-weight: 300;
    font-size: 55%;
}

/* Campaign List Styles */
.text-message-page .panel {
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.text-message-page .panel:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.text-message-page .panel-heading {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 20px;
}

.text-message-page .panel-title {
    color: #495057;
    font-size: 16px;
    font-weight: 500;
}

/* Table Styles */
.text-message-page .table {
    margin-bottom: 0;
}

.text-message-page .table > thead > tr > th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    color: #495057;
    font-weight: 500;
    padding: 12px 15px;
}

.text-message-page .table > tbody > tr > td {
    padding: 12px 15px;
    vertical-align: middle;
}

.text-message-page .table > tbody > tr:hover {
    background-color: #f8f9fa;
}

/* Button Styles */
.text-message-page .btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.text-message-page .btn-primary:hover {
    background-color: #0069d9;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

.text-message-page .btn-primary i {
    margin-right: 5px;
}

/* Modal Styles */
.text-message-page .modal-content {
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.text-message-page .modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    border-radius: 8px 8px 0 0;
    padding: 20px;
}

.text-message-page .modal-title {
    color: #495057;
    font-size: 18px;
    font-weight: 500;
}

.text-message-page .modal-body {
    padding: 20px;
}

.text-message-page .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 20px;
}

/* Form Styles */
.text-message-page .form-group {
    margin-bottom: 20px;
}

.text-message-page .form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-shadow: none;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.text-message-page .form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.text-message-page .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.text-message-page .btn-group .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.text-message-page .btn-group .btn i {
    font-size: 16px;
}

.text-message-page .btn-group .btn:hover {
    background-color: #e9ecef;
    border-color: #ddd;
}

/* Contact Table Styles */
.text-message-page .table-bordered {
    border: 1px solid #e9ecef;
}

.text-message-page .table-bordered > thead > tr > th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

.text-message-page .btn-danger {
    background-color: #dc3545;
    border: none;
    padding: 5px 10px;
}

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

/* Message Sequence Styles */
.text-message-page .input-group {
    margin-bottom: 10px;
}

.text-message-page .input-group-addon {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-left: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .text-message-page .btn-group {
        flex-direction: column;
    }
    
    .text-message-page .btn-group .btn {
        justify-content: center;
    }
    
    .text-message-page .table-responsive {
        border: none;
        margin-bottom: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .text-message-page .panel {
        margin-bottom: 15px;
    }

    .text-message-page .table > thead > tr > th,
    .text-message-page .table > tbody > tr > td {
        white-space: nowrap;
        min-width: 100px;
    }

    .text-message-page h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .text-message-page h3 > span small {
        display: block;
        margin-top: 5px;
    }

    /* Modal Responsive */
    .modal-update-text-message-campaign .modal-dialog,
    .modal-select-photographers .modal-dialog {
        width: 95%;
        margin: 10px auto;
    }

    .text-message-page .modal-body {
        padding: 15px;
        max-height: calc(100vh - 150px);
        overflow-y: auto;
    }

    .text-message-page .form-group {
        margin-bottom: 15px;
    }

    /* Table in modal */
    .text-message-page .modal-body .table-responsive {
        margin-bottom: 0;
        border: 1px solid #dee2e6;
    }

    .text-message-page .modal-body .table > thead > tr > th {
        position: sticky;
        top: 0;
        background: #f8f9fa;
        z-index: 1;
    }

    /* Buttons in modal footer */
    .text-message-page .modal-footer {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }

    .text-message-page .modal-footer .btn {
        width: 100%;
        margin: 0;
    }

    .text-message-page .modal-footer .pull-left {
        float: none !important;
        text-align: center;
        margin-bottom: 10px;
    }
}

/* Small devices (landscape phones) */
@media (max-width: 576px) {
    .text-message-page .panel-heading {
        padding: 10px 15px;
    }

    .text-message-page .table > thead > tr > th,
    .text-message-page .table > tbody > tr > td {
        padding: 8px;
        font-size: 13px;
    }

    .text-message-page .btn {
        font-size: 13px;
        padding: 6px 12px;
    }

    .text-message-page .modal-title {
        font-size: 16px;
    }

    /* Adjust image size in photographer table */
    .text-message-page .img-circle {
        width: 30px !important;
        height: 30px !important;
    }
}

/* Modal Campaign Styles */
.modal-update-text-message-campaign .modal-dialog {
    width: 80%;
    margin: 30px auto;
}

.modal-update-text-message-campaign, .modal-select-photographers, .modal-select-customers{
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

.modal-update-text-message-campaign .modal-content {
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.modal-update-text-message-campaign .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.modal-update-text-message-campaign .modal-header,
.modal-update-text-message-campaign .modal-footer {
    flex: 0 0 auto;
}

/* Selected Contacts Table */
.modal-update-text-message-campaign .table-responsive {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 15px;
    border: 1px solid #dee2e6;
}

.modal-update-text-message-campaign .table-responsive table {
    margin-bottom: 0;
}

.modal-update-text-message-campaign .table-responsive thead th {
    position: sticky;
    top: 0;
    background: #f8f9fa;
    z-index: 1;
    border-bottom: 2px solid #dee2e6;
}

@media (max-width: 768px) {
    .modal-update-text-message-campaign .modal-dialog {
        width: 95%;
        margin: 10px auto;
    }

    .modal-update-text-message-campaign .modal-content {
        max-height: 90vh;
    }

    .modal-update-text-message-campaign .table-responsive {
        max-height: 200px;
    }
}

/* Pagination Styles */
.text-message-page .pagination {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.text-message-page .pagination > li {
    display: inline-flex;
}

.text-message-page .pagination > li > a,
.text-message-page .pagination > li > span {
    padding: 6px 10px;
    min-width: 32px;
    height: 32px;
    border: 1px solid #dee2e6;
    color: #007bff;
    background-color: #fff;
    text-decoration: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.2s ease;
}

.text-message-page .pagination > li.active > a {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.text-message-page .pagination > li.disabled > a,
.text-message-page .pagination > li.disabled > span {
    color: #6c757d;
    pointer-events: none;
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.text-message-page .pagination > li > span.dots {
    border: none;
    padding: 6px 4px;
    color: #6c757d;
    min-width: 20px;
}

.text-message-page .text-muted small {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .text-message-page .pagination {
        gap: 2px;
    }

    .text-message-page .pagination > li > a,
    .text-message-page .pagination > li > span {
        min-width: 28px;
        height: 28px;
        padding: 4px 8px;
        font-size: 12px;
    }

    .text-message-page .text-muted small {
        margin-top: 6px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .text-message-page .pagination > li > a,
    .text-message-page .pagination > li > span {
        min-width: 26px;
        height: 26px;
        padding: 3px 6px;
    }
}

/* Validation Dialog Styles */
.ngdialog.ngdialog-theme-default {
    padding-top: 100px;
}

.ngdialog.ngdialog-theme-default .ngdialog-content {
    border-radius: 8px;
    padding: 25px;
    width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ngdialog-message h3 {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ngdialog-message h3 i {
    font-size: 24px;
}

.ngdialog-message h3.text-danger {
    color: #dc3545;
}

.ngdialog-message h3.text-success {
    color: #28a745;
}

.ngdialog-message p {
    margin: 0 0 15px;
    color: #666;
    font-size: 14px;
}

.ngdialog-message ul {
    margin: 0 0 20px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #dc3545;
}

.ngdialog-message ul li {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.ngdialog-message ul li:last-child {
    margin-bottom: 0;
}

.ngdialog-message .btn {
    min-width: 100px;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.ngdialog-message .btn-primary {
    background: #007bff;
    border: none;
    color: white;
}

.ngdialog-message .btn-primary:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

/* Success Dialog */
.ngdialog-message.success ul {
    border-left-color: #28a745;
}

/* Error Dialog */
.ngdialog-message.error ul {
    border-left-color: #dc3545;
}

@media (max-width: 480px) {
    .ngdialog.ngdialog-theme-default .ngdialog-content {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
    }

    .ngdialog-message h3 {
        font-size: 16px;
    }

    .ngdialog-message h3 i {
        font-size: 20px;
    }

    .ngdialog-message ul {
        padding: 12px 15px;
    }

    .ngdialog-message ul li {
        font-size: 12px;
    }
}

/* Selected File Display */
.selected-file {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
}

.selected-file i.fa-file-excel-o {
    font-size: 18px;
    margin-right: 10px;
}

.selected-file span {
    flex: 1;
    margin-right: 10px;
    color: #495057;
    word-break: break-all;
}

.selected-file .btn-link {
    padding: 0;
    color: #dc3545;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.selected-file .btn-link:hover {
    opacity: 1;
    text-decoration: none;
}

.selected-file .btn-link i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .selected-file {
        padding: 8px 12px;
    }

    .selected-file i.fa-file-excel-o {
        font-size: 16px;
    }

    .selected-file .btn-link i {
        font-size: 14px;
    }
}

/* Campaign List Table Styles */
.contacts-count {
    font-size: 12px;
}

.contacts-count div {
    margin-bottom: 3px;
}

.contacts-count i {
    width: 15px;
    text-align: center;
    margin-right: 5px;
}

.progress-stats .progress {
    height: 15px;
    margin-bottom: 5px;
    background-color: #f5f5f5;
}

.progress-stats .progress-bar {
    line-height: 15px;
    font-size: 11px;
    min-width: 20px;
}

.table > tbody > tr > td {
    vertical-align: middle;
}

.table .label {
    display: inline-block;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: normal;
}

.table small.text-muted {
    display: block;
    font-size: 11px;
    margin-top: 3px;
}

.table .btn-group .btn {
    padding: 3px 6px;
}

.table .btn-group .btn i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .contacts-count {
        font-size: 11px;
    }

    .progress-stats .progress {
        height: 12px;
    }

    .progress-stats .progress-bar {
        line-height: 12px;
        font-size: 10px;
    }

    .table .label {
        padding: 3px 6px;
        font-size: 10px;
    }

    .table small.text-muted {
        font-size: 10px;
    }
}

/* Message Content Styles */
.message-content {
    max-width: 300px;
    max-height: 100px;
    overflow-y: auto;
    font-size: 12px;
    padding: 8px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    white-space: pre-wrap;
    word-break: break-word;
}

.sequence-message {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

.sequence-message:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sequence-message small {
    display: block;
    margin-bottom: 4px;
    color: #6c757d;
}

.sequence-message div {
    line-height: 1.4;
}

@media (max-width: 768px) {
    .message-content {
        max-width: 200px;
        max-height: 80px;
        font-size: 11px;
        padding: 6px;
    }

    .sequence-message {
        margin-bottom: 6px;
        padding-bottom: 6px;
    }

    .sequence-message small {
        margin-bottom: 3px;
        font-size: 10px;
    }
}

/* Loading and Empty States */
.loading-state,
.empty-state {
    padding: 40px 20px;
    background: #fff;
    border-radius: 8px;
    margin: 20px 0;
}

.loading-state i {
    color: #007bff;
    margin-bottom: 15px;
}

.loading-state p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.empty-state i {
    color: #adb5bd;
    margin-bottom: 20px;
}

.empty-state h4 {
    color: #495057;
    margin: 0 0 10px;
    font-size: 18px;
}

.empty-state p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .loading-state,
    .empty-state {
        padding: 30px 15px;
        margin: 15px 0;
    }

    .empty-state i {
        margin-bottom: 15px;
    }

    .empty-state h4 {
        font-size: 16px;
    }

    .empty-state p {
        font-size: 13px;
    }
}

/* Logs Modal Styles */
#logsModal .modal-dialog {
    width: 90%;
    max-width: 1200px;
}

#logsModal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

#logsModal .message-content {
    max-width: 250px;
    max-height: 60px;
    overflow-y: auto;
    font-size: 12px;
    padding: 6px;
    margin: 0;
}

#logsModal .table > tbody > tr > td {
    vertical-align: middle;
    font-size: 13px;
}

#logsModal .label {
    display: inline-block;
    padding: 4px 8px;
    font-size: 11px;
}

#logsModal small {
    display: block;
    font-size: 11px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    #logsModal .modal-dialog {
        width: 95%;
        margin: 10px auto;
    }

    #logsModal .message-content {
        max-width: 150px;
        max-height: 50px;
        font-size: 11px;
    }

    #logsModal .table > tbody > tr > td {
        font-size: 12px;
    }

    #logsModal small {
        font-size: 10px;
    }
}

/* GBP Scores Styles */
.gbp-scores-page {
    padding: 20px;
}

.gbp-scores-page .panel {
    margin-bottom: 30px;
    border-radius: 8px;
}

.gbp-scores-page .panel-heading {
    border-radius: 8px 8px 0 0;
    padding: 20px;
}

.gbp-scores-page .panel-title {
    font-size: 18px;
    color: #2c3e50;
    margin: 0;
    line-height: 34px;
}

.gbp-scores-page .table > thead > tr > th {
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #e9ecef;
}

.gbp-scores-page .table > tbody > tr > td {
    vertical-align: middle;
    padding: 15px;
}

.gbp-scores-page .label {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 500;
}

.gbp-scores-page .label-success {
    background-color: #28a745;
}

.gbp-scores-page .label-info {
    background-color: #fff;
}

.gbp-scores-page .label-warning {
    background-color: #ffc107;
    color: #000;
}

.gbp-scores-page .label-danger {
    background-color: #dc3545;
}

.gbp-scores-page .img-circle {
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gbp-scores-page .btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
}

/* Score Container and Evaluate Button Styles */
.gbp-scores-page .score-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gbp-scores-page .score-label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.gbp-scores-page .score-label:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gbp-scores-page .score-label i {
    font-size: 12px;
    opacity: 0.8;
}

.gbp-scores-page .evaluate-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.gbp-scores-page .evaluate-btn.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
}

.gbp-scores-page .evaluate-btn.btn-outline-primary {
    background-color: transparent;
    border-color: #007bff;
    color: #007bff;
}

.gbp-scores-page .evaluate-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gbp-scores-page .evaluate-btn.btn-warning:hover {
    background-color: #e0a800;
    border-color: #d39e00;
}

.gbp-scores-page .evaluate-btn.btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
}

.gbp-scores-page .evaluate-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.gbp-scores-page .evaluate-btn i {
    font-size: 12px;
}

/* Score Details Modal Styles */
#scoreDetailsModal .modal-content {
    border-radius: 8px;
    border: none;
    background: #f8f9fa;
}

#scoreDetailsModal .modal-header {
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 20px;
    border-radius: 8px 8px 0 0;
}

#scoreDetailsModal .modal-title {
    color: #2c3e50;
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

#scoreDetailsModal .modal-body {
    padding: 20px;
}

/* Total Score Section */
.total-score-section {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.total-score .score-value {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.total-score .score-label {
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.folder-info {
    margin-top: 15px;
    color: #6c757d;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.folder-info i {
    color: #ffc107;
}

/* Empty States */
.empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    color: #6c757d;
}

.empty-state i {
    font-size: 16px;
    opacity: 0.7;
}

.empty-state span {
    font-size: 14px;
}

/* Folder Keywords */
.folder-keywords {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.folder-section {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
}

.folder-name {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 500;
}

.folder-name i {
    color: #ffc107;
}

/* Score Detail Cards */
.score-detail-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.score-detail-card h4 {
    color: #2c3e50;
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.score-detail-card h4 .folder-label {
    color: #6c757d;
    font-size: 14px;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
}

/* Object Detection Styles */
.label-info {
    margin-bottom: 10px;
}

.label-name {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.label-name strong {
    color: #2c3e50;
    font-size: 14px;
}

.label-name .label-id {
    color: #6c757d;
    font-size: 12px;
}

.label-name .label-score {
    color: #007bff;
    font-size: 12px;
    font-weight: 500;
}

.label-details {
    margin-bottom: 5px;
}

.label-details small {
    color: #6c757d;
    font-size: 12px;
}

.bounding-box {
    background: #f8f9fa;
    border-radius: 4px;
    padding: 8px;
    margin-bottom: 10px;
}

.bounding-box small {
    color: #495057;
    font-size: 12px;
    font-weight: 500;
}

.vertices {
    margin-top: 5px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.vertices small {
    color: #6c757d;
    font-size: 11px;
    font-weight: normal;
}

@media (max-width: 768px) {
    .vertices {
        grid-template-columns: 1fr;
    }
    
    .label-name {
        flex-wrap: wrap;
    }
}

/* Labels List */
.labels-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.label-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-container {
    flex: 1;
}

.progress {
    height: 8px;
    margin-bottom: 0;
    background-color: #f1f3f5;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    transition: width 0.6s ease;
    border-radius: 4px;
}

/* Tags Container */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags-container .tag {
    background: #f1f3f5;
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tags-container .tag:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

/* High Score Keywords */
.tags-container.highlight {
    gap: 10px;
}

.tags-container .tag.highlight {
    background: #e3f2fd;
    color: #1976d2;
    font-weight: 600;
    padding: 8px 16px;
    font-size: 14px;
}

.tags-container .tag.highlight:hover {
    background: #bbdefb;
}

@media (max-width: 768px) {
    #scoreDetailsModal .modal-body {
        padding: 15px;
    }

    .total-score-section {
        padding: 20px 0;
        margin-bottom: 15px;
    }

    .total-score .score-value {
        font-size: 36px;
    }

    .total-score .score-label {
        font-size: 12px;
    }

    .folder-info {
        font-size: 12px;
        margin-top: 10px;
    }

    .empty-state {
        padding: 15px;
    }

    .empty-state i {
        font-size: 14px;
    }

    .empty-state span {
        font-size: 12px;
    }

    .folder-section {
        padding: 12px;
    }

    .folder-name {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .score-detail-card {
        padding: 15px;
        margin-bottom: 15px;
    }

    .score-detail-card h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .score-detail-card h4 .folder-label {
        font-size: 12px;
    }

    .label-name {
        font-size: 13px;
    }

    .progress {
        height: 6px;
    }

    .tags-container .tag {
        font-size: 12px;
        padding: 4px 10px;
    }

    .tags-container .tag.highlight {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Update existing GBP Scores styles */
.gbp-scores-page .panel-body {
    padding: 0;
}

.gbp-scores-page .table-responsive {
    margin-bottom: 0;
    border: none;
}

.gbp-scores-page .pagination {
    margin: 20px 0;
}

.gbp-scores-page .text-muted small {
    display: block;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #6c757d;
}

.gbp-scores-page {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* Enhanced GBP Scores Table Styles */
.gbp-scores-page .gbp-scores-table {
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.gbp-scores-page .gbp-scores-table .table {
    margin-bottom: 0;
}

.gbp-scores-page .gbp-scores-table .table > thead > tr > th {
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    color: #495057;
    font-weight: 600;
    padding: 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gbp-scores-page .gbp-scores-table .table > tbody > tr > td {
    padding: 15px;
    vertical-align: middle;
}

.gbp-scores-page .gbp-scores-table .table > tbody > tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

/* Campaign Name */
.gbp-scores-page .campaign-name {
    font-weight: 500;
    color: #2c3e50;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Photographer Info */
.gbp-scores-page .photographer-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gbp-scores-page .photographer-avatar {
    border: 1px solid #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.gbp-scores-page .photographer-avatar:hover {
    transform: scale(1.1);
}

.gbp-scores-page .photographer-details {
    line-height: 1.1;
    min-width: 0;
    flex: 1;
}

.gbp-scores-page .photographer-name {
    font-weight: 500;
    color: #2c3e50;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gbp-scores-page .photographer-phone {
    font-size: 11px;
    color: #6c757d;
}

/* Location Info */
.gbp-scores-page .location-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 13px;
    max-width: 200px;
}

.gbp-scores-page .location-info i {
    color: #dc3545;
    font-size: 14px;
    flex-shrink: 0;
}

/* Collection Name */
.gbp-scores-page .collection-name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057;
    font-size: 13px;
}

.gbp-scores-page .collection-name i {
    color: #ffc107;
    flex-shrink: 0;
}

/* Score Label */
.gbp-scores-page .score-label {
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    min-width: 50px;
    display: inline-block;
    text-align: center;
}

/* Status Badges */
.gbp-scores-page .status-badges {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gbp-scores-page .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 15px;
}

.gbp-scores-page .status-badge i {
    font-size: 10px;
}

.gbp-scores-page .status-uploaded {
    background-color: #28a745;
    color: white;
}

.gbp-scores-page .status-not-uploaded {
    background-color: #ffc107;
    color: #000;
}

.gbp-scores-page .status-score {
    font-size: 11px;
    padding: 4px 8px;
}

/* Action Buttons */
.gbp-scores-page .action-buttons {
    display: flex;
    gap: 8px;
}

.gbp-scores-page .action-buttons .btn {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.gbp-scores-page .action-buttons .btn-default {
    background-color: #f8f9fa;
    border-color: #ddd;
    color: #495057;
}

.gbp-scores-page .action-buttons .btn-default:hover {
    background-color: #e9ecef;
    border-color: #c8c8c8;
    color: #0056b3;
}

.gbp-scores-page .action-buttons .btn-primary {
    background-color: #007bff;
    border-color: #0056b3;
    color: #fff;
}

.gbp-scores-page .action-buttons .btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

.gbp-scores-page .action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gbp-scores-page .action-buttons .btn i {
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .gbp-scores-page .campaign-name,
    .gbp-scores-page .location-info {
        max-width: 150px;
    }
}

@media (max-width: 992px) {
    .gbp-scores-page .gbp-scores-table .table > thead > tr > th,
    .gbp-scores-page .gbp-scores-table .table > tbody > tr > td {
        padding: 12px 8px;
    }

    .gbp-scores-page .photographer-info {
        gap: 6px;
    }

    .gbp-scores-page .photographer-avatar {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .gbp-scores-page .campaign-name,
    .gbp-scores-page .location-info {
        max-width: 120px;
    }

    .gbp-scores-page .photographer-name,
    .gbp-scores-page .photographer-phone {
        font-size: 12px;
    }

    .gbp-scores-page .action-buttons .btn {
        width: 28px;
        height: 28px;
    }
}

.gbp-scores-page .image-preview {
    width: 60px;
    height: 45px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.gbp-scores-page .preview-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.gbp-scores-page .preview-thumb:hover {
    transform: scale(1.1);
}

/* Evaluate Button Styles */
.gbp-scores-page .evaluate-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
    font-weight: 500;
    transition: all 0.2s ease;
}

.gbp-scores-page .evaluate-btn:hover {
    background-color: #e0a800;
    border-color: #d39e00;
    transform: translateY(-1px);
}

.gbp-scores-page .evaluate-btn:disabled {
    background-color: #ffc107;
    border-color: #ffc107;
    opacity: 0.65;
    cursor: not-allowed;
}

.gbp-scores-page .evaluate-btn i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .gbp-scores-page .evaluate-btn {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .gbp-scores-page .evaluate-btn i {
        font-size: 10px;
    }
}