/*
Theme Name: Nigeria Grant Application Theme
Description: A custom standalone theme replicating the UI from IMG-20260907-WA0008.jpg.
Author: Web Developer
Version: 1.0
*/

/* Reset and Base Styling */
body, html {
    margin: 0;
    padding: 0;
    background-color: #f7f9fc;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.grant-body-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.grant-card {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px 24px;
    text-align: center;
    box-sizing: border-box;
}

.grant-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.grant-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Form and Radio Buttons */
.grant-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.grant-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border: 2px solid #4CAF50;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.grant-option:hover {
    background-color: #f0fdf4;
}

.grant-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Custom Radio Circle */
.radio-circle {
    height: 24px;
    width: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-right: 15px;
    flex-shrink: 0;
}

.grant-option input[type="radio"]:checked ~ .radio-circle {
    border-color: #4CAF50;
}

.grant-option input[type="radio"]:checked ~ .radio-circle::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background-color: #4CAF50;
    border-radius: 50%;
}

.grant-info {
    display: flex;
    align-items: center;
    flex-grow: 1;
    text-align: left;
    font-size: 16px;
    color: #333;
}

.grant-icon {
    margin-right: 10px;
    font-size: 18px;
}

.grant-amount {
    font-size: 18px;
    font-weight: 700;
    color: #d97736;
}

/* Submit Button */
.apply-btn {
    margin-top: 24px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.apply-btn:hover {
    background-color: #333;
}

.footer-note {
    margin-top: 20px;
    font-size: 13px;
    color: #888;
}