/**
 * Command Concept TT Referral - Frontend Styles
 */

.cctt-referral-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    max-width: 300px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    animation: cctt-slide-in 0.3s ease-out;
}

.cctt-referral-notification span {
    display: block;
    margin-right: 25px;
}

.cctt-referral-notification strong {
    font-weight: 600;
}

.cctt-close-notification {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.cctt-close-notification:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@keyframes cctt-slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cctt-referral-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .cctt-referral-notification {
        background: #2E7D32;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }
}
.cctt-consent-text {
	font-family: "Montserrat",Sans-serif;
}