﻿/* Modal tam ekran yapılandırması */
.modal-dialog {
    width: 100vw;
    max-width: none;
    height: 100vh;
    margin: 0;
}

.modal-content {
    height: 100vh;
    border: none;
    border-radius: 0;
    overflow-y: auto;
}

.modal-header {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    color: white;
    /*border-radius: 0px 0px 40px 40px;*/
    border-bottom: none;
    padding: 20px 25px;
    height: 130px;
    margin-top: -25px;
    top: 0;  
    display: flex;
    align-items: center;
}

.modal-title {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    flex-grow: 1;
}

.btn-close {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    opacity: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-close:hover {
        background-color: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

    .btn-close::before {
        /* content: "×";*/
        color: white;
        font-size: 20px;
        font-weight: bold;
    }

/* İçerik alanı için padding */
.DivDetail {
    margin-top: -30px;
    overflow-y: auto;
    min-height: calc(100vh - 130px);
}
