/* REVISI STYLE AI NEWS GENERATOR */
.aing-container, .aing-login-wrapper {
    max-width: 900px;
    margin: 30px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* 1. Login Full Page Look */
.aing-login-card-full {
    background: #fff;
    padding: 60px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid #eee;
    margin-top: 50px;
}

.aing-google-logo-large {
    width: 64px;
    margin-bottom: 20px;
}

.aing-google-btn-full {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #444;
    padding: 14px 32px;
    border: 1px solid #dadce0;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    margin: 30px auto;
    width: fit-content;
    font-size: 16px;
    transition: all 0.2s;
}

.aing-google-btn-full img {
    width: 22px;
    margin-right: 12px;
}

.aing-google-btn-full:hover {
    background: #f8f9fa;
    border-color: #d2e3fc;
    box-shadow: 0 1px 3px rgba(60,64,67, 0.3), 0 4px 8px 3px rgba(60,64,67, 0.15);
}

/* 2. Preview Section Styles */
.aing_preview_section {
    margin-top: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #2271b1;
}

.preview-input-title {
    width: 100% !important;
    font-size: 20px !important;
    font-weight: bold !important;
    padding: 15px !important;
    margin-bottom: 20px !important;
    border: 2px solid #ddd !important;
    border-radius: 6px !important;
}

.preview-textarea-content {
    width: 100% !important;
    padding: 15px !important;
    border: 2px solid #ddd !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    background: #f9f9f9 !important;
}

/* 3. Buttons Stage 1 & 2 */
#btn_generate {
    background: #1d2327;
    color: #fff;
    width: 100%;
    padding: 18px;
    font-size: 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

#btn_publish {
    background: #0073aa;
    color: #fff;
    width: 100%;
    padding: 20px;
    font-size: 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,115,170,0.3);
}

#btn_generate:hover, #btn_publish:hover { opacity: 0.9; transform: translateY(-1px); }

/* File Input Custom */
.aing-file-input label {
    display: block;
    padding: 20px;
    background: #f0f0f1;
    border: 2px dashed #ccc;
    cursor: pointer;
    border-radius: 8px;
    text-align: center;
}

.aing-file-input input { display: none; }
