/* Main Wrapper */
#gic-calculator-wrapper {
    max-width: 500px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow: hidden;
    color: #333;
}

/* Header */
.gic-header {
    background: linear-gradient(135deg, #111 0%, #333 100%); /* Black Friday vibe */
    color: #fff;
    padding: 25px;
    text-align: center;
}

.gic-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.gic-header p {
    margin: 8px 0 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Form Area */
.gic-form {
    padding: 25px;
}

.gic-input-group {
    margin-bottom: 20px;
}

.gic-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #444;
}

.gic-input-group input, 
.gic-input-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.2s;
    box-sizing: border-box; /* Fix for padding issue */
}

.gic-input-group input:focus, 
.gic-input-group select:focus {
    border-color: #000;
    outline: none;
}

.gic-input-group small {
    display: block;
    margin-top: 5px;
    color: #888;
    font-size: 0.8rem;
}

/* Button */
#gic-calculate-btn {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 10px;
}

#gic-calculate-btn:hover {
    opacity: 0.9;
}

/* Result Box */
.gic-result-box {
    background: #f9f9f9;
    padding: 25px;
    border-top: 1px solid #eee;
    animation: fadeIn 0.5s ease;
}

.gic-result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.gic-result-row.total {
    font-weight: 800;
    font-size: 1.2rem;
    color: #000;
    margin-top: 15px;
}

.gic-danger {
    color: #d9534f;
    font-weight: 600;
}

.gic-disclaimer {
    margin-top: 20px;
    font-size: 0.75rem;
    color: #999;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
