/* KVKK Data Subject Request Application Page Styles */

/* Card hover effects */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

/* Form styling */
.form-label.required::after {
    content: " *";
    color: #f1416c;
}

.form-control:focus,
.form-select:focus {
    border-color: #009ef7;
    box-shadow: 0 0 0 0.25rem rgba(0, 158, 247, 0.1);
}

/* Alert styling */
.alert {
    border-radius: 0.625rem;
}

.alert-info {
    background-color: #f1faff;
    border-color: #c9f0ff;
    color: #009ef7;
}

/* Button loading state */
[data-kt-indicator="on"] .indicator-label {
    display: none;
}

[data-kt-indicator="on"] .indicator-progress {
    display: inline-block;
}

.indicator-progress {
    display: none;
}

/* Success modal styling */
#SuccessModal .modal-header.bg-success {
    background-color: #50cd89 !important;
}

#SuccessModal code {
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    background-color: #e8fff3;
    border: 2px dashed #50cd89;
    border-radius: 0.5rem;
    letter-spacing: 2px;
}

/* Tracking section */
.input-group .form-control:focus {
    z-index: 2;
}

/* Separator styling */
.separator.separator-dashed {
    border-bottom: 1px dashed #e4e6ef;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fs-2hx {
        font-size: 2rem !important;
    }
    
    .card-body {
        padding: 1.5rem;
    }
}

/* Select2 custom styling */
.select2-container--default .select2-selection--single {
    height: calc(1.5em + 1.1rem + 2px);
    padding: 0.55rem 1rem;
    border: 1px solid #e4e6ef;
    border-radius: 0.475rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: calc(1.5em + 1.1rem);
    padding-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: calc(1.5em + 1.1rem);
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #009ef7;
}

/* Invalid feedback */
.invalid-feedback {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #f1416c;
}

.is-invalid {
    border-color: #f1416c !important;
}

.is-invalid:focus {
    border-color: #f1416c !important;
    box-shadow: 0 0 0 0.25rem rgba(241, 65, 108, 0.1) !important;
}

/* KVKK Consent Modal Styling */
#ConsentModal .modal-header.bg-primary {
    background-color: #009ef7 !important;
}

#ConsentModal .modal-body {
    padding: 2rem;
}

.consent-text-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #3f4254;
}

.consent-text-content h5 {
    color: #181c32;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.consent-text-content h5:first-child {
    margin-top: 0;
}

.consent-text-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.consent-text-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.consent-text-content li {
    margin-bottom: 0.5rem;
}

/* Consent checkbox styling */
.form-check-custom.form-check-solid .form-check-input {
    width: 1.5rem;
    height: 1.5rem;
}

.form-check-custom.form-check-solid .form-check-input:checked {
    background-color: #50cd89;
    border-color: #50cd89;
}

.form-check-lg .form-check-input {
    width: 1.75rem;
    height: 1.75rem;
    margin-top: 0;
}

.form-check-lg .form-check-label {
    font-size: 1rem;
    padding-left: 0.5rem;
}

/* Notice box styling */
.notice {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge circle styling */
.badge-circle {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Step indicator */
.card-toolbar .badge {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Button hover effects */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
}

/* File size display */
.file-size-display {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Character counter badge */
#DescriptionCharCount {
    font-size: 0.85rem;
    padding: 0.35rem 0.65rem;
}

/* Responsive modal */
@media (max-width: 1200px) {
    #ConsentModal .modal-dialog {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .consent-text-content {
        font-size: 0.9rem;
    }

    #ConsentModal .modal-body {
        padding: 1rem;
    }

    .badge-circle {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }
}

