/* Sekce pro lepší organizaci */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #B1D235;
}

.section-header i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    color: #B1D235;
}

.section-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
}

/* Card styling */
.info-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border: 1px solid #e0e6ed;
}

.info-card-header {
    background: linear-gradient(135deg, #B1D235 0%, #95B11F 100%);
    color: #212529;
    padding: 1.25rem;
    border-radius: 12px 12px 0 0;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.info-card-body {
    padding: 1.5rem;
}

.info-item {
    margin-bottom: 1.25rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.info-label i {
    margin-right: 0.5rem;
    color: #B1D235;
    font-size: 1rem;
}

.info-value {
    color: #212529;
    font-size: 0.95rem;
}

/* Form styling */
.form-check-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 0.5rem;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.form-check-input {
    margin-right: 0.5rem;
}

.form-text {
    font-size: 0.875rem;
    margin-left: 1.5rem;
}

/* Animace pro DIČ container */
#dic-container {
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Responsive úpravy */
@media (max-width: 767px) {
    .form-check-container {
        margin-bottom: 1rem;
    }
    
    #dic-container {
        margin-top: 1rem;
    }
}

/* Color settings grid */
.color-settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.color-setting-item {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f8f9fa;
}

.color-input-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.color-preview {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    min-width: 120px;
    text-align: center;
    border: 1px solid #dee2e6;
}

/* Vylepšení pro primary button */
.btn-primary {
    background-color: #B1D235;
    border-color: #B1D235;
    color: #212529;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #95B11F;
    border-color: #95B11F;
    color: #212529;
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(177, 210, 53, 0.25);
}