@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.gc-certificados {
    max-width: 980px;
    margin: 24px auto;
    padding: 24px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
}

.gc-certificados::before {
    content: "";
    display: block;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1d4ed8, #60a5fa);
    margin-bottom: 18px;
}

.gc-certificados h2 {
    margin-top: 0;
    font-size: 24px;
    color: #1f2937;
}

.gc-legal {
    margin-top: 0;
    font-size: 14px;
    color: #1f2937;
    line-height: 1.5;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 16px;
}

.gc-legal-highlight {
    font-weight: 700;
    color: #b91c1c;
}

.gc-aviso {
    background: #f3f4f6;
    border-left: 4px solid #2563eb;
    padding: 12px 16px;
    border-radius: 8px;
    color: #111827;
    font-size: 14px;
    line-height: 1.5;
}

.gc-form {
    margin-top: 16px;
}

.gc-wizard {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gc-wizard-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gc-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.gc-step-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f3f4f6;
    color: #6b7280;
    font-weight: 600;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.gc-step-indicator.is-current {
    background: #ffedd5;
    color: #c2410c;
}

.gc-step-indicator.is-incomplete {
    background: #fee2e2;
    color: #b91c1c;
}

.gc-step-indicator.is-complete {
    background: #dcfce7;
    color: #15803d;
}

.gc-step-indicator.is-complete::after {
    content: "✓";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 800;
}

.gc-step-indicator.is-complete .gc-step-label {
    color: #15803d;
}

.gc-step-indicator.is-current .gc-step-label {
    color: #c2410c;
}

.gc-step-indicator.is-incomplete .gc-step-label {
    color: #b91c1c;
}

.gc-step-indicator.is-complete .gc-step-number {
    background: #bbf7d0;
}

.gc-step-indicator.is-current .gc-step-number {
    background: #fed7aa;
}

.gc-step-indicator.is-incomplete .gc-step-number {
    background: #fecaca;
}

.gc-step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    font-weight: 700;
    color: inherit;
}

.gc-step {
    animation: gcFade 0.25s ease;
}

@keyframes gcFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gc-progress {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.gc-step-status {
    display: none;
    margin-top: 6px;
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    text-align: center;
}

.gc-progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    transition: width 0.25s ease;
}

.gc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.gc-full {
    grid-column: 1 / -1;
}

.gc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gc-field label {
    font-weight: 600;
    color: #374151;
}

.gc-optional {
    font-weight: 500;
    color: #6b7280;
    font-size: 12px;
}

.gc-field input,
.gc-field select,
.gc-field textarea {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    outline: none;
}

.gc-field input.gc-file {
    padding: 0;
    border: 1px dashed #cbd5f5;
    background: #f8fafc;
    border-radius: 12px;
}

.gc-field input.gc-file::file-selector-button {
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    color: #ffffff;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    margin-right: 12px;
    cursor: pointer;
    font-weight: 600;
}

.gc-field input.gc-file:hover::file-selector-button {
    filter: brightness(0.95);
}

.gc-field select {
    width: 100%;
    padding-right: 38px;
}

.gc-date-field {
    position: relative;
    display: flex;
    align-items: center;
}

.gc-date-field input {
    width: 100%;
    padding-right: 42px;
}

.gc-date-btn {
    position: absolute;
    right: 8px;
    border: none;
    background: #e0e7ff;
    color: #1d4ed8;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gc-date-btn:hover {
    background: #c7d2fe;
}

.flatpickr-input {
    background: #ffffff;
}

.flatpickr-calendar {
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
    border: 1px solid #e5e7eb;
}

.gc-field input:focus,
.gc-field select:focus,
.gc-field textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.gc-field input.gc-readonly {
    background: #f3f4f6;
    color: #6b7280;
    border-style: dashed;
}

.gc-static {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #dbeafe;
    background: linear-gradient(90deg, #eff6ff, #ffffff);
    color: #1f2937;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.08);
}

.gc-static::before {
    content: '';
    width: 18px;
    height: 18px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Cpath d='M7 8h10'/%3E%3Cpath d='M7 12h6'/%3E%3C/svg%3E");
}

.gc-static.gc-static-num::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4h10'/%3E%3Cpath d='M7 20h10'/%3E%3Cpath d='M9 4l6 16'/%3E%3C/svg%3E");
}

.gc-static.gc-static-name::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19h16'/%3E%3Cpath d='M7 17V7l5-3 5 3v10'/%3E%3Cpath d='M9 17V9'/%3E%3Cpath d='M15 17V9'/%3E%3C/svg%3E");
}

.gc-field small {
    color: #6b7280;
    font-size: 12px;
}

.gc-file-warning {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0 0;
    padding: 8px 10px;
    border-radius: 10px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-size: 12px;
    font-weight: 600;
}

.gc-file-warning.gc-file-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.gc-inline-alert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0 0;
    padding: 8px 10px;
    border-radius: 10px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-size: 12px;
    font-weight: 600;
}

.gc-inline-alert-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fb923c;
    color: #fff7ed;
    font-size: 12px;
    font-weight: 700;
}

.gc-address-group {
    padding: 14px 16px;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.gc-address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 10px;
}

.gc-section-title {
    font-weight: 700;
    font-size: 16px;
    color: #111827;
    padding: 8px 0 4px;
    border-bottom: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gc-section-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
}

.gc-icon-user {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

.gc-icon-club {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 21V7a2 2 0 0 1 2-2h8'/%3E%3Cpath d='M18 3v18'/%3E%3Cpath d='M6 9h12'/%3E%3C/svg%3E");
}

.gc-icon-player {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='7' r='3.5'/%3E%3Cpath d='M5 21c1-4 5-6 7-6s6 2 7 6'/%3E%3Cpath d='M7.5 13.5 5 10'/%3E%3C/svg%3E");
}

.gc-icon-coach {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 21c0-4 3-7 7-7s7 3 7 7'/%3E%3Ccircle cx='12' cy='7' r='3.5'/%3E%3Cpath d='M8 10l-2-2'/%3E%3C/svg%3E");
}

.gc-icon-whistle {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 13a4 4 0 0 0 8 0'/%3E%3Cpath d='M14 13h6'/%3E%3Ccircle cx='6' cy='13' r='3.5'/%3E%3Cpath d='M18 9v2'/%3E%3C/svg%3E");
}

.gc-icon-doc {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 3v5h5'/%3E%3Cpath d='M9 13h6'/%3E%3Cpath d='M9 17h6'/%3E%3C/svg%3E");
}

.gc-icon-location {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s7-7.5 7-13a7 7 0 1 0-14 0c0 5.5 7 13 7 13z'/%3E%3Ccircle cx='12' cy='9' r='2.5'/%3E%3C/svg%3E");
}

.gc-icon-calendar {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4'/%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M3 10h18'/%3E%3Cpath d='M8 14h4'/%3E%3C/svg%3E");
}

.gc-confirm {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
}

.gc-confirm h3 {
    margin: 0 0 6px;
    color: #1f2937;
    font-size: 18px;
}

.gc-privacy {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gc-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #111827;
}

.gc-check input {
    width: 18px;
    height: 18px;
}

.gc-privacy-text {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.5;
    color: #4b5563;
}

.gc-legal-links {
    margin: 0;
    font-size: 12px;
    color: #6b7280;
}

.gc-legal-links a {
    color: #1d4ed8;
    font-weight: 600;
    text-decoration: none;
}

.gc-legal-links a:hover {
    text-decoration: underline;
}

.gc-merchant {
    margin-top: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.gc-merchant-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.gc-merchant-header strong {
    font-size: 14px;
    color: #0f172a;
}

.gc-merchant-header span {
    font-size: 13px;
    color: #1d4ed8;
    font-weight: 700;
}

.gc-merchant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px 14px;
}

.gc-merchant-item {
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gc-merchant-item span {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gc-merchant-item strong {
    font-size: 13px;
    color: #0f172a;
}

.gc-merchant-full {
    grid-column: 1 / -1;
}

.gc-merchant-note {
    margin: 10px 0 0;
    font-size: 12px;
    color: #64748b;
}

.gc-legal-page {
    max-width: 920px;
    margin: 28px auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
    color: #111827;
}

.gc-legal-page h2 {
    margin-top: 0;
    font-size: 24px;
}

.gc-legal-page h3 {
    margin-top: 20px;
    font-size: 16px;
    color: #0f172a;
}

.gc-legal-list {
    margin: 10px 0 0;
    padding-left: 18px;
    color: #374151;
    font-size: 13.5px;
    line-height: 1.6;
}

.gc-legal-note {
    margin-top: 12px;
    font-size: 12.5px;
    color: #6b7280;
}

.gc-legal-policy {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 13px;
    color: #1f2937;
    line-height: 1.6;
}

.gc-submit-note {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
}

.gc-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gc-summary-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.gc-summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.gc-summary-title {
    font-weight: 700;
    color: #1f2937;
}

.gc-summary-edit {
    background: #e0e7ff;
    color: #1d4ed8;
    border: none;
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
}

.gc-summary-edit:hover,
.gc-summary-edit:focus {
    background: #c7d2fe;
}

.gc-summary-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px 16px;
}

.gc-summary-row {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gc-summary-file {
    gap: 8px;
}

.gc-summary-preview {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}

.gc-summary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.gc-summary-change-file,
.gc-summary-camera {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    color: #1e3a8a;
    border: 1px solid #c7d2fe;
    border-radius: 14px;
    padding: 9px 16px;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(30, 58, 138, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.gc-summary-change-file:hover,
.gc-summary-camera:hover {
    background: linear-gradient(180deg, #eef2ff 0%, #e0e7ff 100%);
    border-color: #818cf8;
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(30, 58, 138, 0.18);
}

.gc-summary-change-file:focus,
.gc-summary-camera:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.gc-summary-change-file::before,
.gc-summary-camera::before {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1d4ed8;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    content: "↻";
}

.gc-summary-camera::before {
    content: "📷";
    background: #0ea5e9;
}

.gc-summary-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.gc-summary-value {
    font-size: 14px;
    color: #111827;
    font-weight: 600;
}

.gc-summary-empty {
    color: #6b7280;
    font-size: 13px;
}

.gc-submit {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    justify-content: flex-end;
}

.gc-mini-policy-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.2;
}

.gc-mini-policy-tag a {
    color: #1d4ed8;
    font-weight: 700;
    text-decoration: none;
}

.gc-mini-policy-tag a:hover {
    text-decoration: underline;
}

.gc-wizard-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.gc-wizard-help {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    background: #f9fafb;
    border: 1px dashed #e5e7eb;
    padding: 8px 10px;
    border-radius: 10px;
}

.gc-processing {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10000;
    backdrop-filter: blur(2px);
}

.gc-processing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 22px;
    max-width: 460px;
    width: 100%;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.gc-processing-spinner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 4px solid #e5e7eb;
    border-top-color: #2563eb;
    animation: gcSpin 0.9s linear infinite;
    flex-shrink: 0;
}

.gc-processing-card strong {
    font-size: 15px;
    color: #0f172a;
    display: block;
}

.gc-processing-card p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #64748b;
}

.gc-is-processing .gc-btn {
    pointer-events: none;
}

@keyframes gcSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.gc-btn {
    background: #2563eb;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
}

.gc-btn:hover {
    background: #1d4ed8;
}

.gc-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.gc-btn-secondary {
    background: #e5e7eb;
    color: #111827;
}

.gc-btn-secondary:hover {
    background: #d1d5db;
}

.gc-camera-btn {
    align-self: flex-start;
}

.gc-camera-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 100000;
}

.gc-camera-dialog {
    width: min(720px, 100%);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
}

@media (max-width: 720px) {
    .gc-camera-dialog {
        margin-bottom: 90px;
    }

    .gc-camera-actions {
        padding-bottom: 20px;
    }
}

.gc-camera-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
}

.gc-camera-close {
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    color: #6b7280;
    position: relative;
    overflow: visible;
}

.gc-camera-close::after {
    content: 'Cerrar';
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #16a34a;
    color: #ffffff;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-2px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 2;
}

.gc-camera-close:hover::after,
.gc-camera-close:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
}

.gc-camera-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.gc-camera-viewport {
    position: relative;
    width: 100%;
}

.gc-camera-video,
.gc-camera-canvas {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #0f172a;
    max-height: 420px;
    object-fit: contain;
}

.gc-camera-frame {
    position: absolute;
    inset: 8% 10%;
    border: 2px dashed rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    box-shadow: 0 0 0 999px rgba(15, 23, 42, 0.25);
    pointer-events: none;
}

.gc-camera-hint {
    margin: 0;
    font-size: 13px;
    color: #4b5563;
    text-align: center;
}

.gc-camera-error {
    color: #b91c1c;
    background: #fee2e2;
    border: 1px solid #fecaca;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
    width: 100%;
    text-align: center;
}

.gc-camera-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 12px 16px 16px;
    border-top: 1px solid #e5e7eb;
}

body.gc-hide-chatbot .crisp-client,
body.gc-hide-chatbot .intercom-lightweight-app,
body.gc-hide-chatbot .tawk-min-container,
body.gc-hide-chatbot .fb_dialog,
body.gc-hide-chatbot .woot-widget-holder,
body.gc-hide-chatbot #chat-widget,
body.gc-hide-chatbot #chatbot,
body.gc-hide-chatbot .chatbot,
body.gc-hide-chatbot .chat-widget,
body.gc-hide-chatbot iframe[src*="chat"],
body.gc-hide-chatbot iframe[src*="chat"]+div,
body.gc-hide-chatbot [class*="chat"],
body.gc-hide-chatbot [id*="chat"],
body.gc-hide-chatbot [class*="bot"],
body.gc-hide-chatbot [id*="bot"],
body.gc-hide-chatbot iframe[src*="intercom"],
body.gc-hide-chatbot iframe[src*="crisp"],
body.gc-hide-chatbot iframe[src*="tawk"],
body.gc-hide-chatbot iframe[src*="chatbase"],
body.gc-hide-chatbot iframe[src*="kommo"],
body.gc-hide-chatbot iframe[src*="smartsupp"],
body.gc-hide-chatbot iframe[src*="livechat"],
body.gc-hide-chatbot iframe[src*="hubspot"],
body.gc-hide-chatbot iframe[src*="zendesk"],
body.gc-hide-chatbot iframe[src*="freshchat"],
body.gc-hide-chatbot iframe[src*="messenger"],
body.gc-hide-chatbot iframe[src*="fb"],
body.gc-hide-chatbot iframe[src*="x-bee"],
body.gc-hide-chatbot iframe[src*="x-bees"],
body.gc-hide-chatbot iframe[src*="xbees"],
body.gc-hide-chatbot iframe[src*="x-beees"],
body.gc-hide-chatbot iframe[src*="x-beees"],
body.gc-hide-chatbot [class*="x-bee"],
body.gc-hide-chatbot [id*="x-bee"],
body.gc-hide-chatbot [class*="xbees"],
body.gc-hide-chatbot [id*="xbees"] {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.gc-hidden {
    display: none;
}

.gc-club-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 8px;
    max-height: 240px;
    overflow-y: auto;
}

.gc-club-item {
    text-align: left;
    border: 1px solid transparent;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gc-club-item:hover,
.gc-club-item:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    outline: none;
}

.gc-club-name {
    font-weight: 600;
    color: #1f2937;
}

.gc-club-meta {
    font-size: 12px;
    color: #6b7280;
}

.gc-club-empty {
    padding: 10px 12px;
    color: #6b7280;
    font-size: 13px;
}

.gc-pago-mensaje {
    max-width: 720px;
    margin: 32px auto;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
}

.gc-pago-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.gc-pago-card h2 {
    margin: 0;
    font-size: 22px;
}

.gc-pago-card p {
    margin: 0;
    color: #4b5563;
}

.gc-pago-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    background: #22c55e;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.25);
}

.gc-ko .gc-pago-icon {
    background: #ef4444;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.25);
}

.gc-pago-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 6px;
}

.gc-ok {
    border: 2px solid #22c55e;
}

.gc-ko {
    border: 2px solid #ef4444;
}

.gc-pago-body {
    margin: 0;
    background: #f8fafc;
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
    color: #0f172a;
}

.gc-pago-screen {
    max-width: 920px;
    margin: 32px auto;
    padding: 28px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid #e5e7eb;
}

.gc-pago-hero {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.gc-pago-eyebrow {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #64748b;
    margin: 0 0 4px;
}

.gc-pago-hero h2 {
    margin: 0;
    font-size: 24px;
}

.gc-pago-hero p {
    margin: 6px 0 0;
    color: #475569;
}

.gc-pago-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.gc-pago-panel {
    background: #f8fafc;
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
}

.gc-pago-panel h3 {
    margin: 0 0 8px;
    font-size: 14px;
    color: #0f172a;
}

.gc-pago-panel ul {
    margin: 0;
    padding-left: 18px;
    color: #475569;
    font-size: 13px;
    line-height: 1.5;
}

.gc-pago-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    font-size: 13px;
    margin-bottom: 14px;
}

.gc-pago-banner span {
    font-weight: 700;
}

.gc-pago-screen .gc-pago-actions {
    margin-top: 10px;
    justify-content: flex-start;
}

.gc-public-panel {
    max-width: 1200px;
    margin: 24px auto;
    padding: 12px 16px;
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
    font-size: 15px;
    color: #111827;
}

body,
.gc-panel-shell,
.gc-cert-panel,
.gc-admin-section,
.gc-public-panel {
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
}

.gc-public-panel .wrap {
    padding: 0;
}

.gc-public-panel .gc-admin-section,
.gc-public-panel .gc-cert-panel-cards {
    width: 100%;
}

.gc-public-panel .gc-admin-filters-form {
    /* hereda el flex layout del form base */
}

.gc-public-panel .gc-admin-actions-row,
.gc-public-panel .gc-admin-bulk-form {
    gap: 12px;
}

.gc-panel-header {
    background: #0b1f3a;
    color: #ffffff;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gc-panel-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}

.gc-panel-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gc-panel-header-inner img {
    width: 90px;
    height: auto;
    display: block;
    max-height: 90px;
}

.gc-panel-header-inner h1 {
    margin: 0;
    font-size: 24px;
    letter-spacing: 0.2px;
}

.gc-panel-header-inner p {
    margin: 4px 0 0;
    font-size: 13px;
    opacity: 0.85;
}

.gc-panel-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gc-panel-user {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}

.gc-panel-user-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.gc-panel-user-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #e2e8f0;
    font-weight: 700;
    white-space: nowrap;
}

.gc-panel-user-badge-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(147, 197, 253, 0.28);
    color: #ffffff;
    flex: 0 0 20px;
}

.gc-panel-user-badge-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.gc-panel-user-badge-text {
    color: #e2e8f0;
}

.gc-panel-user-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 24px;
}

.gc-panel-user-email {
    color: #cbd5e1;
    font-size: 12.5px;
    font-weight: 600;
    white-space: nowrap;
}

.gc-panel-user-separator {
    color: rgba(203, 213, 225, 0.8);
    font-size: 12px;
}

.gc-panel-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.gc-panel-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gc-panel-link-logout {
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-size: 12.5px;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gc-panel-link-logout:hover {
    background: transparent;
    color: #dbeafe;
}

.gc-panel-login {
    max-width: 1080px;
    margin: 28px auto;
}

.gc-panel-login-brand-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 26px 16px 4px;
}

.gc-panel-login-brand-top img {
    width: 110px;
    height: auto;
    display: block;
}

.gc-panel-login-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 22px;
    align-items: stretch;
}

.gc-panel-login-side {
    background: linear-gradient(140deg, #0b1f3a 0%, #17345f 48%, #214b7e 100%);
    border-radius: 22px;
    padding: 28px;
    color: #eaf2ff;
    box-shadow: 0 16px 35px rgba(10, 31, 58, 0.28);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gc-panel-login-chip {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(168, 190, 220, 0.35);
    background: rgba(228, 238, 255, 0.1);
    font-size: 12px;
    font-weight: 700;
    color: #d9e8ff;
}

.gc-panel-login-side h2 {
    margin: 0;
    color: #ffffff;
    font-size: 37px;
    line-height: 1.05;
}

.gc-panel-login-side>p {
    margin: 0;
    color: #d6e2f5;
    font-size: 14px;
    line-height: 1.55;
}

.gc-panel-login-feature {
    border-radius: 16px;
    border: 1px solid rgba(155, 182, 219, 0.22);
    background: rgba(235, 245, 255, 0.1);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gc-panel-login-feature strong {
    color: #f3f8ff;
    font-size: 15px;
}

.gc-panel-login-feature span {
    color: #d2dff3;
    font-size: 13px;
    line-height: 1.4;
}

.gc-panel-login-side-note {
    margin-top: auto !important;
    border-top: 1px solid rgba(182, 206, 235, 0.25);
    padding-top: 12px;
    color: #b8d0f2 !important;
    font-size: 13px !important;
}

.gc-panel-login-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gc-panel-login-main {
    border-radius: 22px;
    padding: 30px 28px;
    justify-content: center;
}

.gc-panel-login-main h3 {
    margin: 2px 0 0;
    color: #0f2342;
    font-size: 35px;
    line-height: 1.08;
}

.gc-panel-login-intro {
    margin-top: 4px !important;
    color: #4f6079 !important;
    font-size: 15px !important;
    line-height: 1.55;
}

.gc-panel-login-card h2 {
    margin: 0;
    font-size: 24px;
    color: #0f172a;
}

.gc-panel-login-card p {
    margin: 0;
    color: #4b5563;
}

.gc-panel-login-eyebrow {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1d4ed8 !important;
}

.gc-panel-login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.gc-panel-login-form label {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-top: 3px;
}

.gc-panel-login-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gc-panel-login-icon {
    position: absolute;
    left: 12px;
    color: #8ea0b8;
    font-size: 14px;
    line-height: 1;
}

.gc-panel-login-form input {
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 12px 14px 12px 34px;
    font-size: 14px;
    width: 100%;
    background: #f6f9ff;
}

.gc-panel-login-form input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    outline: none;
}

.gc-panel-pass-toggle {
    position: absolute;
    right: 8px;
    border: none;
    background: transparent;
    color: #5277ab;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 6px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gc-panel-pass-toggle-icon {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 1;
}

.gc-panel-pass-toggle-icon::after {
    content: '';
    position: absolute;
    left: -1px;
    right: -1px;
    top: 50%;
    height: 2px;
    border-radius: 2px;
    background: #5277ab;
    transform: translateY(-50%) rotate(-28deg);
}

.gc-panel-pass-toggle.is-visible .gc-panel-pass-toggle-icon::after {
    display: none;
}

#gc-panel-pass {
    padding-right: 42px;
}

.gc-panel-login-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.gc-panel-login-remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #516481;
    font-size: 13px;
    font-weight: 600;
}

.gc-panel-login-remember input {
    width: 14px;
    height: 14px;
    padding: 0;
    margin: 0;
}

.gc-panel-login-forgot {
    color: #2e71c8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.gc-panel-login-forgot:hover {
    text-decoration: underline;
}

.gc-panel-login-submit {
    margin-top: 2px;
    width: 100%;
    border-radius: 12px;
    background: linear-gradient(90deg, #2b8bdd, #46a4f4);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 14px 20px;
}

.gc-panel-login-submit:hover {
    background: linear-gradient(90deg, #247ed0, #3195e8);
}

.gc-panel-login-alert {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 600;
}

.gc-panel-login-note {
    margin-top: 8px;
    font-size: 12.5px;
    color: #64748b !important;
    text-align: center;
    line-height: 1.4;
}

.gc-panel-copyright {
    margin: 16px auto 0;
    text-align: center;
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
    max-width: 1120px;
    padding: 0 16px;
}

.gc-panel-copyright-login {
    color: #7b8ca2;
}

.gc-panel-copyright-panel {
    margin: 6px auto 20px;
    padding: 0 24px;
    color: #475569;
}

@media (max-width: 980px) {
    .gc-panel-login-layout {
        grid-template-columns: 1fr;
    }

    .gc-panel-login-main h3,
    .gc-panel-login-side h2 {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .gc-panel-login {
        margin: 16px auto;
    }

    .gc-panel-login-side,
    .gc-panel-login-main {
        padding: 20px 18px;
        border-radius: 18px;
    }

    .gc-panel-login-main h3,
    .gc-panel-login-side h2 {
        font-size: 26px;
    }

    .gc-panel-login-submit {
        font-size: 18px;
    }

    .gc-panel-login-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .gc-panel-user {
        align-items: flex-end;
    }

    .gc-panel-user-email {
        max-width: 220px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.gc-admin-config-details {
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
}

.gc-admin-config-details summary {
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 8px;
}

.gc-admin-config-form .form-table {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    border-collapse: collapse;
}

.gc-admin-config-form .form-table th,
.gc-admin-config-form .form-table td {
    padding: 10px 12px;
    vertical-align: top;
    text-align: left;
}

.gc-admin-config-form .form-table th {
    width: 260px;
    font-weight: 600;
    color: #0f172a;
}

.gc-admin-config-form .form-table td input,
.gc-admin-config-form .form-table td select,
.gc-admin-config-form .form-table td textarea {
    width: 100%;
    max-width: 480px;
}

.gc-admin-config-form .form-table td .description {
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
}

.gc-public-panel .wrap {
    font-size: 15px;
}

.gc-public-panel table,
.gc-public-panel th,
.gc-public-panel td {
    font-size: 14px;
    text-align: left;
}

.gc-public-panel input,
.gc-public-panel select,
.gc-public-panel textarea,
.gc-public-panel button,
.gc-public-panel .button {
    font-size: 14px;
}

.gc-public-panel details summary {
    font-size: 14px;
}

.gc-cert-panel {
    font-size: 16px;
    color: #0f172a;
}

.gc-cert-panel h1 {
    font-size: 28px;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}

.gc-cert-panel .widefat,
.gc-cert-panel .widefat td,
.gc-cert-panel .widefat th {
    font-size: 14px;
    text-align: left;
}

.gc-cert-panel input,
.gc-cert-panel select,
.gc-cert-panel textarea,
.gc-cert-panel button,
.gc-cert-panel .button {
    font-size: 14px;
}

.gc-admin-section {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 14px 16px;
    margin-bottom: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.gc-admin-section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.gc-admin-section-header strong {
    font-size: 14px;
    color: #0f172a;
}

.gc-admin-section-header span {
    font-size: 12px;
    color: #64748b;
}

.gc-admin-filters-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: end;
}

.gc-admin-filters-form .gc-admin-field {
    flex: 0 1 auto;
}

.gc-admin-field input,
.gc-admin-field select {
    width: 100%;
    max-width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    box-sizing: border-box;
}

.gc-admin-filters-form .gc-admin-field input[type="text"],
.gc-admin-filters-form .gc-admin-field input[type="email"] {
    width: 150px;
}

.gc-admin-filters-form .gc-admin-field input[type="search"] {
    width: 240px;
}

.gc-admin-filters-form .gc-admin-field select {
    width: 150px;
}

.gc-admin-field-search {
    /* hereda el width del input[type="search"] */
}

.gc-admin-field-payment select {
    width: 140px;
}

.gc-admin-field-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gc-admin-field-date input[type="date"] {
    width: 130px;
}

.gc-admin-filters-form .button,
.gc-admin-filters-form .button-primary,
.gc-admin-filters-form input[type="submit"],
.gc-admin-filters-form button {
    align-self: end;
    min-height: 38px;
    white-space: nowrap;
}

.gc-admin-field-date span {
    color: #64748b;
    font-size: 12px;
}

.gc-admin-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.gc-admin-bulk-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.gc-admin-section .button,
.gc-admin-section .button-primary,
.gc-admin-section .button-secondary,
.gc-admin-section input[type="submit"],
.gc-admin-section button {
    border-radius: 12px;
    padding: 8px 14px;
    font-weight: 600;
    border: 1px solid #d1d5db;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.gc-admin-section .button-primary {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-color: #1d4ed8;
    color: #ffffff;
}

.gc-admin-section .button-primary:hover {
    filter: brightness(0.95);
}

.gc-admin-section .button-secondary {
    background: #f8fafc;
    color: #1f2937;
}

.gc-admin-section .button-secondary:hover {
    background: #eef2ff;
}

.gc-admin-bulk-hint {
    color: #6b7280;
    font-size: 12px;
}

.gc-admin-table-grid {
    border-radius: 14px;
    overflow: hidden;
    margin: 0;
    width: 100%;
    table-layout: auto;
    font-size: 14px;
}

.gc-admin-table-grid th,
.gc-admin-table-grid td {
    padding: 14px 12px;
    vertical-align: top;
    line-height: 1.6;
    white-space: normal;
    word-break: break-word;
    text-align: left;
}

.gc-admin-table-grid th:nth-child(1),
.gc-admin-table-grid td:nth-child(1) {
    width: 36px;
    text-align: left;
}

.gc-admin-table-grid th:nth-child(2),
.gc-admin-table-grid td:nth-child(2) {
    min-width: 120px;
    white-space: nowrap;
}

.gc-admin-table-grid th:nth-child(3),
.gc-admin-table-grid td:nth-child(3),
.gc-admin-table-grid th:nth-child(4),
.gc-admin-table-grid td:nth-child(4) {
    min-width: 90px;
    text-align: left;
    white-space: nowrap;
}

.gc-admin-table-grid th:nth-child(6),
.gc-admin-table-grid td:nth-child(6),
.gc-admin-table-grid th:nth-child(7),
.gc-admin-table-grid td:nth-child(7) {
    min-width: 140px;
}

.gc-admin-table-grid th:nth-child(9),
.gc-admin-table-grid td:nth-child(9) {
    min-width: 120px;
    white-space: nowrap;
}

.gc-admin-table-grid th:nth-child(10),
.gc-admin-table-grid td:nth-child(10) {
    min-width: 90px;
    text-align: left;
    white-space: nowrap;
}

.gc-admin-table-grid th:nth-child(11),
.gc-admin-table-grid td:nth-child(11) {
    min-width: 120px;
    text-align: left;
    white-space: nowrap;
}

.gc-admin-table-grid th {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 700;
    font-size: 13.5px;
    white-space: nowrap;
    word-break: normal;
}

.gc-admin-table-grid td {
    word-break: break-word;
}

.gc-admin-table-grid tbody tr:hover {
    background: #f8fafc;
}

.gc-admin-table-grid tbody tr.gc-payment-pending-row td {
    background: #f6b36b;
    color: #ffffff;
    font-weight: 700;
}

.gc-admin-table-grid tbody tr.gc-payment-pending-row:hover td {
    background: #eea85e;
}

.gc-admin-table-grid tbody tr.gc-payment-pending-row a,
.gc-admin-table-grid tbody tr.gc-payment-pending-row strong,
.gc-admin-table-grid tbody tr.gc-payment-pending-row .gc-action-icon,
.gc-admin-table-grid tbody tr.gc-payment-pending-row .gc-action-label {
    color: #ffffff;
    font-weight: 700;
}

.gc-admin-table-grid tbody tr.gc-payment-pending-row .gc-action-icon {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.55);
}

.gc-admin-table-grid tbody tr.gc-payment-pending-row .gc-action-icon:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.75);
}

.gc-action-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 6px 10px;
    background: #ffffff;
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
}

.gc-action-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.gc-action-label {
    line-height: 1;
}

.gc-action-icon:hover {
    background: #eff6ff;
    border-color: #93c5fd;
}

.gc-tooltip {
    position: fixed;
    z-index: 100010;
    background: #16a34a;
    color: #ffffff;
    border-radius: 8px;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 1.2;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(3px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.gc-tooltip.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.gc-admin-toast-stack {
    position: fixed;
    top: 16px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 100020;
}

.gc-toast {
    min-width: 220px;
    max-width: 360px;
    border-radius: 14px;
    padding: 10px 12px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px) saturate(170%);
    -webkit-backdrop-filter: blur(14px) saturate(170%);
    opacity: 0;
    transform: translateX(14px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
}

.gc-toast.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.gc-toast-success {
    background: rgba(249, 250, 251, 0.92);
    border-color: rgba(148, 163, 184, 0.45);
    color: #0f172a;
}

.gc-toast-logout {
    background: #16a34a;
    border-color: rgba(187, 247, 208, 0.45);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gc-toast-logout::before {
    content: '✓';
    font-size: 12px;
    font-weight: 800;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 2px 8px;
}

.gc-toast-error {
    background: rgba(185, 28, 28, 0.88);
}

.gc-toast-info {
    background: rgba(29, 78, 216, 0.88);
}

.gc-admin-ajax-loader {
    position: fixed;
    top: 18px;
    left: 18px;
    background: #111827;
    color: #ffffff;
    border-radius: 10px;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    z-index: 100030;
}

.gc-admin-ajax-loader.gc-hidden {
    display: none !important;
}

.gc-loader-spinner {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    animation: gcSpin 0.8s linear infinite;
}

.gc-back-panel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #1f2937;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 7px 10px;
    margin: 6px 0 12px;
    background: #ffffff;
    font-weight: 600;
}

.gc-back-panel svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.gc-back-panel:hover {
    background: #f8fafc;
}

.gc-detail-microcopy {
    margin: 0 0 14px;
    color: #6b7280;
    font-size: 13px;
}

.gc-admin-detail-page,
.gc-admin-detail-page .gc-admin-section,
.gc-admin-detail-page input,
.gc-admin-detail-page select,
.gc-admin-detail-page textarea,
.gc-admin-detail-page button,
.gc-admin-detail-page .button {
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
}

.gc-admin-table details summary {
    cursor: pointer;
    font-weight: 600;
    color: #1d4ed8;
}

.gc-admin-table details[open] summary {
    color: #0f172a;
}

.gc-admin-table textarea,
.gc-admin-table select,
.gc-admin-table input[type="file"] {
    width: 100%;
    max-width: 320px;
}

.gc-admin-table form .button {
    width: max-content;
}

.gc-admin-manage-top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
}

.gc-admin-manage-top-note {
    margin: 0;
    font-size: 13px;
    color: #334155;
}

.gc-admin-manage-header h2 {
    margin: 0;
    font-size: 22px;
    color: #0f172a;
}

.gc-admin-manage-header p {
    margin: 10px 0 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.65;
}

.gc-admin-manage-section-title {
    margin: 20px 0 10px;
    font-size: 14px;
    color: #1d4ed8;
    font-weight: 700;
}

.gc-admin-manage-summary {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.gc-admin-manage-summary div {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gc-admin-manage-summary span {
    color: #64748b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gc-admin-manage-summary strong {
    color: #0f172a;
    font-size: 13px;
}

.gc-admin-request-docs {
    margin-top: 14px;
    padding: 12px;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: #f8fbff;
}

.gc-admin-request-docs h3 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #1d4ed8;
}

.gc-admin-request-docs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
}

.gc-admin-request-doc-item {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gc-admin-request-doc-item strong {
    color: #0f172a;
    font-size: 12px;
}

.gc-admin-request-doc-item span {
    color: #334155;
    font-size: 12px;
    word-break: break-word;
}

.gc-admin-request-doc-open {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gc-admin-request-doc-open-icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #1d4ed8;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 18px;
}

.gc-admin-request-doc-open-icon svg {
    width: 11px;
    height: 11px;
    fill: currentColor;
}

.gc-admin-request-docs-empty {
    margin: 0;
    color: #64748b;
    font-size: 12px;
}

.gc-admin-request-data-accordion {
    margin-top: 14px;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: #f8fbff;
}

.gc-admin-request-data-accordion summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    font-weight: 700;
    color: #0f172a;
}

.gc-admin-request-data-accordion summary::-webkit-details-marker {
    display: none;
}

.gc-admin-request-data-accordion summary small {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.gc-admin-request-data-content {
    padding: 0 12px 12px;
}

.gc-admin-request-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 10px;
}

.gc-admin-request-data-item {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    padding: 10px;
    min-height: 76px;
}

.gc-admin-request-data-item h4 {
    margin: 0;
    color: #1e3a8a;
    font-size: 12px;
    line-height: 1.4;
}

.gc-admin-request-data-item p,
.gc-admin-request-data-item a {
    margin: 6px 0 0;
    display: block;
    color: #1f2937;
    font-size: 12px;
    line-height: 1.5;
    word-break: break-word;
}

.gc-admin-request-data-item.is-empty p {
    color: #94a3b8;
}

.gc-admin-request-data-table {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
}

.gc-admin-request-data-table th {
    width: 260px;
    background: #eef4ff;
    font-weight: 700;
    color: #0f172a;
}

.gc-admin-request-data-table td {
    color: #1f2937;
}

.gc-admin-manage-help-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.gc-admin-manage-help-grid article {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 12px;
}

.gc-admin-manage-help-grid h3 {
    margin: 0;
    font-size: 13px;
    color: #1d4ed8;
}

.gc-admin-manage-help-grid p {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1.5;
    color: #334155;
}

.gc-admin-manage-form {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.gc-admin-manage-topbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 16px;
    padding: 16px;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: sticky;
    top: 12px;
    z-index: 3;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.gc-admin-manage-topbar-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 14px;
    align-items: flex-end;
    flex: 1;
    min-width: 280px;
}

.gc-admin-manage-topfield {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 220px;
    color: #334155;
    font-size: 13px;
}

.gc-admin-manage-topfield span {
    font-weight: 700;
    color: #1e3a8a;
}

.gc-admin-manage-topfield select,
.gc-admin-manage-topfield input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    padding: 10px 12px;
}

.gc-admin-manage-topfield-email {
    min-width: 260px;
}

.gc-admin-manage-topbar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.gc-admin-manage-topbar-actions .button {
    border-radius: 12px;
    padding: 9px 16px;
    font-weight: 700;
}

.gc-admin-manage-guide {
    margin-top: 2px;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    background: #f8fbff;
}

.gc-admin-manage-guide summary {
    cursor: pointer;
    list-style: none;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    color: #1d4ed8;
}

.gc-admin-manage-guide summary::-webkit-details-marker {
    display: none;
}

.gc-admin-manage-guide .gc-admin-manage-help-grid {
    margin-top: 0;
    padding: 0 14px 14px;
}

.gc-admin-manage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.gc-admin-manage-grid label {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    line-height: 1.55;
    color: #334155;
}

.gc-admin-state-section {
    border: 1px solid #dbeafe;
    border-radius: 14px;
    background: #ffffff;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.gc-admin-state-section h4 {
    margin: 0;
    font-size: 16px;
    color: #1d4ed8;
}

.gc-admin-state-note {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: #475569;
}

.gc-admin-state-section-common {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.gc-admin-manage-grid label span {
    font-weight: 600;
}

.gc-admin-inline-help {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: #64748b;
}

.gc-admin-inline-help strong {
    color: #0f172a;
}

.gc-admin-response-preview {
    border: 1px solid #dbeafe;
    border-radius: 10px;
    background: #f8fbff;
    margin-top: 2px;
}

.gc-admin-response-preview summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 13px;
    color: #1d4ed8;
    padding: 10px 12px;
}

.gc-admin-response-preview summary::-webkit-details-marker {
    display: none;
}

.gc-admin-response-preview-body {
    border-top: 1px solid #dbeafe;
    padding: 12px;
    color: #1f2937;
    font-size: 13px;
    line-height: 1.6;
    white-space: normal;
}

.gc-admin-manage-grid textarea,
.gc-admin-manage-grid select,
.gc-admin-manage-grid input[type="file"] {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    padding: 10px 12px;
}

.gc-admin-manage-grid textarea {
    min-height: 132px;
    line-height: 1.6;
}

.gc-admin-manage-grid input[type="file"] {
    border-style: dashed;
    border-color: #cbd5e1;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 8px;
}

.gc-admin-manage-grid input[type="file"]::file-selector-button {
    border: 1px solid #cfd4dc;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
    color: #111827;
    padding: 8px 14px;
    margin-right: 10px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 4px 10px rgba(15, 23, 42, 0.08);
    transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

.gc-admin-manage-grid input[type="file"]::file-selector-button:hover {
    background: linear-gradient(180deg, #f8fafc 0%, #e7ecf2 100%);
    transform: translateY(-1px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 8px 14px rgba(15, 23, 42, 0.14);
}

.gc-admin-manage-inline {
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 10px;
    padding: 10px;
}

.gc-admin-manage-inline-email {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1e3a8a;
    flex: 1 1 100%;
    width: 100%;
    min-width: 300px;
    align-items: flex-start;
    white-space: normal;
    line-height: 1.45;
    margin-top: 2px;
}

.gc-admin-manage-inline-email input[type="checkbox"] {
    margin-top: 2px;
    flex: 0 0 auto;
}

@media (max-width: 900px) {
    .gc-admin-manage-topbar {
        position: static;
    }

    .gc-admin-manage-topbar-actions {
        width: 100%;
    }

    .gc-admin-manage-topbar-actions .button {
        width: 100%;
    }

    .gc-admin-manage-integration {
        flex-direction: column;
        align-items: stretch;
    }

    .gc-admin-bc-button {
        width: 100%;
    }
}

.gc-admin-manage-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}

.gc-admin-manage-extra-files {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
}

.gc-admin-manage-extra-files a {
    color: #1d4ed8;
    text-decoration: none;
}

.gc-admin-manage-extra-files a:hover {
    text-decoration: underline;
}

.gc-admin-manage-timeline {
    font-size: 13px;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 14px;
}

.gc-admin-manage-timeline ul {
    margin: 8px 0 0 18px;
    display: grid;
    gap: 6px;
}

.gc-admin-manage-timeline strong {
    color: #0f172a;
}

.gc-admin-audit-accordion {
    border: 1px solid #dbeafe;
    border-radius: 14px;
    background: #f8fbff;
    overflow: hidden;
}

.gc-admin-audit-accordion summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    color: #1d4ed8;
    font-size: 14px;
    font-weight: 700;
}

.gc-admin-audit-accordion summary::-webkit-details-marker {
    display: none;
}

.gc-admin-audit-accordion summary::after {
    content: "▾";
    color: #64748b;
    font-size: 14px;
    transition: transform 0.25s ease;
}

.gc-admin-audit-accordion[open] summary::after {
    transform: rotate(180deg);
}

.gc-admin-audit-accordion summary small {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.gc-admin-audit-accordion-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease, opacity 0.24s ease;
    opacity: 0.25;
}

.gc-admin-audit-accordion[open] .gc-admin-audit-accordion-body {
    grid-template-rows: 1fr;
    opacity: 1;
}

.gc-admin-audit-accordion-body > .gc-admin-audit-log {
    overflow: hidden;
}

.gc-admin-audit-log {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0 12px 12px;
}

.gc-admin-audit-log-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.gc-admin-audit-log-head strong {
    color: #1d4ed8;
    font-size: 14px;
}

.gc-admin-audit-log-head span {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.gc-admin-audit-log-empty {
    margin: 0;
    color: #64748b;
    font-size: 13px;
}

.gc-admin-audit-log-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.gc-admin-audit-log-item {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    padding: 10px;
}

.gc-admin-audit-log-item-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
}

.gc-admin-audit-state {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e3a8a;
    padding: 2px 8px;
    font-weight: 700;
}

.gc-admin-audit-main {
    margin: 0;
    color: #0f172a;
    font-size: 13px;
}

.gc-admin-audit-main span {
    color: #475569;
    font-weight: 500;
}

.gc-admin-audit-detail,
.gc-admin-audit-meta {
    margin: 5px 0 0;
    color: #334155;
    font-size: 12px;
    line-height: 1.45;
}

.gc-admin-audit-meta {
    color: #64748b;
}

.gc-admin-manage-integration {
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    padding: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.gc-admin-manage-integration-copy {
    min-width: 280px;
    flex: 1;
}

.gc-admin-manage-integration-copy strong {
    display: block;
    color: #1e3a8a;
    margin-bottom: 4px;
    font-size: 14px;
}

.gc-admin-manage-integration-copy p {
    margin: 0;
    color: #475569;
    font-size: 13px;
    line-height: 1.55;
}

.gc-admin-bc-button {
    border-radius: 12px;
    padding: 9px 14px;
    font-weight: 700;
    border: 1px solid #93c5fd;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
    color: #1e3a8a;
}

.gc-admin-manage-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.gc-admin-processing-note {
    margin-top: 8px;
    font-size: 12px;
    color: #0f172a;
    background: #fef9c3;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 8px 10px;
}

.gc-admin-table {
    padding: 0;
}

.gc-tour-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.2), rgba(15, 23, 42, 0.75));
    backdrop-filter: blur(3px);
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.gc-tour-overlay.gc-hidden {
    display: none !important;
}

.gc-tour-card {
    width: min(520px, 100%);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 18px;
    border: 1px solid #dbeafe;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.28);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.gc-tour-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.gc-tour-step {
    margin: 0;
    color: #1d4ed8;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gc-tour-card h3 {
    margin: 0;
    font-size: 24px;
    color: #0f172a;
    line-height: 1.15;
}

.gc-tour-text {
    margin: 0;
    color: #334155;
    font-size: 15px;
    line-height: 1.5;
}

.gc-tour-optout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
}

.gc-tour-optout input {
    width: 16px;
    height: 16px;
}

.gc-tour-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.gc-tour-actions .button {
    min-width: 102px;
    border-radius: 10px;
    font-weight: 700;
    padding: 7px 14px;
}

.gc-tour-actions .button-primary {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-color: #1d4ed8;
    color: #ffffff;
}

.gc-tour-actions .button-primary:hover {
    filter: brightness(0.95);
}

.gc-tour-highlight {
    position: relative;
    z-index: 100000;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.55), 0 10px 20px rgba(15, 23, 42, 0.16) !important;
    border-radius: 14px;
}

body.gc-tour-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .gc-tour-card {
        border-radius: 14px;
        padding: 16px;
    }

    .gc-tour-card h3 {
        font-size: 20px;
    }

    .gc-tour-text {
        font-size: 14px;
    }

    .gc-tour-actions {
        justify-content: stretch;
    }

    .gc-tour-actions .button {
        flex: 1 1 auto;
    }
}

@media (max-width: 900px) {
    .gc-admin-field-date {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .gc-admin-filters-form .gc-admin-field input[type="text"],
    .gc-admin-filters-form .gc-admin-field input[type="email"],
    .gc-admin-filters-form .gc-admin-field input[type="search"],
    .gc-admin-filters-form .gc-admin-field select,
    .gc-admin-field-payment select,
    .gc-admin-field-date input[type="date"] {
        width: 100%;
        max-width: 100%;
    }

    .gc-admin-filters-form .gc-admin-field {
        flex: 1 1 140px;
    }
}

.gc-cert-panel-cards {
    display: grid;
    grid-template-columns: repeat(6, minmax(140px, 1fr));
    gap: 12px;
    margin: 16px 0 20px;
}

.gc-cert-panel-card {
    --gc-accent: #1d4ed8;
    --gc-accent-soft: #dbeafe;
    position: relative;
    padding: 14px 16px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    min-height: 90px;
}

.gc-cert-panel-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gc-accent), var(--gc-accent-soft));
}

.gc-cert-panel-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #475569;
    font-weight: 700;
}

.gc-cert-panel-value {
    margin-top: 6px;
    font-size: 24px;
    font-weight: 700;
    color: var(--gc-accent);
}

.gc-card-total {
    --gc-accent: #1d4ed8;
    --gc-accent-soft: #93c5fd;
}

.gc-card-pendiente {
    --gc-accent: #f97316;
    --gc-accent-soft: #fdba74;
}

.gc-card-revision {
    --gc-accent: #0ea5e9;
    --gc-accent-soft: #7dd3fc;
}

.gc-card-pendiente-doc {
    --gc-accent: #f59e0b;
    --gc-accent-soft: #fde68a;
}

.gc-card-resuelto {
    --gc-accent: #16a34a;
    --gc-accent-soft: #86efac;
}

.gc-card-rechazado {
    --gc-accent: #dc2626;
    --gc-accent-soft: #fca5a5;
}

@media (max-width: 1200px) {
    .gc-cert-panel-cards {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
    }
}

@media (max-width: 900px) {
    .gc-cert-panel-cards {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }
}

@media (max-width: 600px) {
    .gc-steps {
        grid-template-columns: repeat(5, minmax(38px, 1fr));
        gap: 8px;
    }

    .gc-step-indicator {
        justify-content: center;
        padding: 8px;
    }

    .gc-step-label {
        display: none;
    }

    .gc-step-status {
        display: block;
    }

    .gc-cert-panel-cards {
        grid-template-columns: 1fr;
    }

    .gc-cert-panel h1 {
        font-size: 24px;
    }
}