#showInfo {
    background-color: #3f51b5;
    color: white;
}

#showSuccess {
    background-color: #00bcd4;
    color: white;
}

#showWarning {
    background-color: #ffc107;
    color: #333;
}

#showDanger {
    background-color: #f44336;
    color: white;
}

/* Modal Styles */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 100 !important;
}

.modal-s {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 10000;
    overflow: hidden;
}

.modal-s-header {
    padding: 10px;
    text-align: right;
}

.info-modal .modal-s-header {
    background-color: #3f51b5;
}

.success-modal .modal-s-header {
    background-color: #00bcd4;
}

.warning-modal .modal-s-header {
    background-color: #ffc107;
}

.danger-modal .modal-s-header {
    background-color: #f44336;
}

.close-s-btn {
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0 10px;
}

.modal-s-content {
    padding: 20px;
    text-align: center;
}

.modal-s-icon {
    margin-bottom: 15px;
}

.icon-s {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.info-s-icon {
    background-color: #3f51b5;
}

.success-s-icon {
    background-color: #00bcd4;
}

.warning-s-icon {
    background-color: #ffc107;
    color: #333;
}

.danger-s-icon {
    background-color: #f44336;
}

.modal-s-title {
    margin-bottom: 10px;
    color: #333;
}

.modal-s-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.modal-s-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-s {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.decline-s-btn {
    background-color: white;
    color: #f44336;
    border: 1px solid #f44336;
}

.accept-s-btn {
    background-color: #3f51b5;
    color: white;
}

.close-s-btn-success {
    background-color: #00bcd4;
    color: white;
}

.back-s-btn {
    background-color: white;
    color: #00bcd4;
    border: 1px solid #00bcd4;
}

.continue-btn {
    background-color: #ffc107;
    color: #333;
}

.delete-s-btn {
    background-color: #f44336;
    color: white;
}

.form-control:focus {
    border-color: #1a3b5d !important;
    box-shadow: none !important;
}

.required-title{
    color:red;
}

@media (min-width: 1400px) {
    .container {
        max-width: 960px !important;
    }
}
@media (max-width: 1400px) {
    .container {
        max-width: 960px !important;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}


.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Yarı saydam siyah */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Loader Spinner - Yuvarlak yükleyici */
.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

.hidden {
    display: none;
}

/* Spinner animasyonu */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.pdf-preview-iframe {
    width: 100%;
    height: 75vh;
    border: none;
}

.page-header {
    text-align: center;
    padding: 20px 0;
    display: block !important;
}

.header-logo {
    width: 100%;
    max-width: 220px;
    height: auto;
}
