/* --------------------------------------------
   OEUK Thunderclap Styling
-------------------------------------------- */

#oeuk-tc-wrapper {
    max-width: 650px;
    margin: 0 auto;
    padding: 25px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    border-radius: 10px;
    font-family: Arial, sans-serif;
}

/* Headings */
#oeuk-tc-wrapper h2 {
    font-size: 26px;
    color: #2b3e78;
    margin-bottom: 10px;
}

#oeuk-tc-wrapper h3 {
    margin-top: 25px;
    font-size: 20px;
    color: #2b3e78;
}

/* Labels */
#oeuk-tc-wrapper label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
}

/* Inputs */
#oeuk-tc-wrapper input[type="text"],
#oeuk-tc-wrapper input[type="email"],
#oeuk-tc-wrapper textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd1e0;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Consent Checkbox */
.oeuk-consent {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Button Styling */
#oeuk-tc-wrapper button,
.oeuk-tc-image-btn,
.oeuk-tc-share-btn {
    display: inline-block;
    background: #2b3e78;
    color: #fff !important;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

#oeuk-tc-wrapper button:hover,
.oeuk-tc-image-btn:hover,
.oeuk-tc-share-btn:hover {
    background: #1c2d5c;
}

/* Success Panel */
#oeuk-tc-success {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    background: #f5f7fb;
}

/* Post Textbox */
#oeuk-tc-post {
    width: 100%;
    height: 180px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #cbd1e0;
    background: #fff;
    font-size: 14px;
}

/* Countdown Timer */
#oeuk-tc-countdown {
    font-size: 20px;
    color: #2b3e78;
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.oeuk-tc-count {
    display: flex;
    justify-content: center;
    font-size: 24px;
    gap: 15px;
}

.oeuk-tc-count span {
    background: #2b3e78;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: bold;
}

/* Share Buttons */
.oeuk-tc-image-btn,
.oeuk-tc-share-btn {
    margin-top: 10px;
    display: inline-block;
}

/* Responsive */
@media screen and (max-width: 480px) {
    #oeuk-tc-wrapper {
        padding: 15px;
    }

    .oeuk-tc-count {
        flex-wrap: wrap;
        gap: 10px;
    }
}
