/* Safe Content Protection CSS */

.scp-container {
    display: inline-block;
    vertical-align: middle;
    font-family: inherit;
    margin: 5px 0;
}

/* Alignment Classes */
.scp-align-center {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    margin: 15px 0;
}

.scp-align-left {
    display: block !important;
    text-align: left !important;
    width: 100% !important;
    margin: 15px 0;
}

.scp-align-right {
    display: block !important;
    text-align: right !important;
    width: 100% !important;
    margin: 15px 0;
}

/* Reveal Button Styling */
.scp-reveal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #0056b3;
    color: #ffffff !important;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.15);
    line-height: 1.2;
    text-decoration: none !important;
    outline: none;
}

.scp-reveal-btn:hover {
    background-color: #004494;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 86, 179, 0.25);
}

.scp-reveal-btn:active {
    transform: translateY(0);
}

/* Output Styling */
.scp-output {
    display: none;
    font-weight: 600;
    color: #0056b3;
    animation: scpFadeIn 0.4s ease-out forwards;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    vertical-align: middle;
}

.scp-output a {
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.scp-output a:hover {
    border-bottom: 2px solid #0056b3;
}

/* Animation */
@keyframes scpFadeIn {
    from { 
        opacity: 0; 
        transform: scale(0.95) translateY(5px); 
    }
    to { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}

/* Specific type adjustments if needed */
.scp-type-email .scp-reveal-btn {
    /* Email specific button styles (if any) */
}

.scp-type-text .scp-reveal-btn {
    /* Text specific button styles (if any) */
}
