/* Kıdem Tazminatı Hesaplama Modülü CSS */
.kidem-container {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.kidem-header {
    background: #33475c;
    color: white;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px;
}

.kidem-header h1 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
}

.kidem-form-section {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.kidem-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.kidem-col {
    flex: 1;
}

@media (max-width: 768px) {
    .kidem-row { flex-direction: column; }
}

.kidem-label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.kidem-input, .kidem-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.kidem-input:focus, .kidem-select:focus {
    border-color: #33475c;
    outline: none;
}

.kidem-button {
    background: #33475c;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.kidem-button:hover {
    background: #2c3e50;
}

.kidem-info-section {
    background: #f8f9fa;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
    text-align: center;
}

.kidem-info-badge {
    display: inline-block;
    background: white;
    padding: 5px 10px;
    margin: 2px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 12px;
}

.kidem-alert {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.kidem-alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.kidem-results {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.kidem-results-header {
    background: #33475c;
    color: white;
    padding: 20px;
    text-align: center;
}

.kidem-results-content {
    padding: 20px;
}

.kidem-result-section {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-left: 3px solid #33475c;
    border-radius: 4px;
}

.kidem-result-section h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.kidem-calc-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.kidem-calc-row:last-child {
    border-bottom: none;
}

.kidem-total-section {
    background: #33475c;
    color: white;
    padding: 20px;
    text-align: center;
}

.kidem-total-amount {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 10px 0;
}

.kidem-text-warning { color: #856404; }
.kidem-text-danger { color: #dc3545; }
.kidem-text-success { color: #28a745; }

.kidem-accordion {
    cursor: pointer;
    user-select: none;
}

.kidem-accordion-content {
    display: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.kidem-footer {
    text-align: center;
    padding: 15px;
    color: #666;
    font-size: 12px;
    background: white;
    border-radius: 4px;
}
