/**
 * Consent Management Debug Styles
 */

.fte-consent-debug-panel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 330px;
    background-color: #1e272e;
    color: #d2dae2;
    border: 2px solid #3c40c6;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    padding: 16px;
    z-index: 2147483647; /* Ensure it stays on top of all pages */
    box-sizing: border-box;
}

.fte-consent-debug-panel h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #ffc048;
    border-bottom: 1px solid #485460;
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fte-debug-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.fte-debug-grid div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px dotted #2c3e50;
    padding-bottom: 4px;
}

.fte-debug-grid strong {
    color: #808e9b;
    padding-right: 10px;
}

.fte-debug-grid span {
    text-align: right;
    word-break: break-all;
    color: #ffffff;
}

.fte-badge {
    background-color: #3c40c6;
    color: #ffffff;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.fte-debug-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fte-btn {
    background-color: #485460;
    color: #ffffff;
    border: 1px solid #1e272e;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.fte-btn:hover {
    background-color: #57606f;
    border-color: #808e9b;
}

.fte-btn-danger {
    background-color: #ff5e57;
    border-color: #ff3f34;
}

.fte-btn-danger:hover {
    background-color: #ff3f34;
    border-color: #ff5e57;
}

.fte-btn-secondary {
    background-color: #0fbcf9;
    border-color: #05c46b;
}

.fte-btn-secondary:hover {
    background-color: #34e7e4;
}
