﻿@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');


:root {
    --bg-color: #E2DDD3;
    --card-color: #ffffff;
    --main-gradient: linear-gradient(45deg, #8a2387, #e94057, #f27121);
    --main-color-start: #1D5A91;
    --text-color: #333;
    --border-radius: 15px;
}

body {
    font-family: 'Consolas', monospace;
    background: var(--bg-color);
    margin: 0;
    padding: 20px;
}

fieldset {
    position: relative;
    background: #FBF9F2;
    border-radius: var(--border-radius);
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

    fieldset::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: var(--main-color-start);
        border-radius: 5px 0 0 5px;
        transition: all 0.3s ease;
    }

    fieldset:hover::before {
        background: #75581e;
    }

legend {
    color: var(--main-color-start);
    font-weight: 900;
    font-size: 1.8em;
    background: none;
    padding: 10px 15px;
    border-radius: 5px;
    text-transform: uppercase;
}

.AlseinTable td {
    padding-right: 20px;
    vertical-align: middle;
}

.btn-success {
    background: #1C59B4;
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 35px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px #1C59B4;
    font-size: 1rem;
    cursor: pointer;
}

    .btn-success:hover {
        transform: translateY(-2px);
        box-shadow: #1C59B4;
    }

    .btn-success:active {
        transform: scale(0.98);
    }

.btn-yazi:hover {
    color: #fff;
}

.LoadingIcon {
    display: none;
    width: 47px;
}

textarea,
.AlseinTable select,
.AlseinTable input,
.AlseinTable .form-control {
    width: 100%;
    max-width: 100%;
    min-width: 600px; /* 500px’den 600px’e çıkardık */
    padding: 12px 15px;
    background: #fcfcfc;
    border: 2px dashed #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s;
}

    textarea:focus,
    .AlseinTable select:focus,
    .AlseinTable input:focus,
    .AlseinTable .form-control:focus {
        border: 2px solid var(--main-color-start);
        box-shadow: 0 0 15px rgba(233, 64, 87, 0.2);
        background: white;
    }


    .kisisel td{
        padding-right:6rem;
    }

.fatura td {
    padding-right: 3rem !important;
}





.konaklama td {
    padding-right: 6rem !important;
}
.odeme td {
    padding-right: 3rem !important;
}

.hesap td {
    padding-right: 6rem !important;
}



.AlseinTable button {
    background: var(--main-gradient);
    color: white;
    font-weight: 800;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(233, 64, 87, 0.4);
    transition: all 0.4s;
    background-size: 200% auto;
    padding: 10px 25px;
}

    .AlseinTable button:hover {
        background-position: right center;
        box-shadow: 0 6px 20px rgba(233, 64, 87, 0.6);
        transform: scale(1.03);
    }

    .AlseinTable button:active {
        box-shadow: none;
        transform: scale(0.98);
    }

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    fieldset {
        padding: 20px 30px;
    }

    legend {
        font-size: 1.6em;
    }

    .btn-success {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    textarea, .AlseinTable select, .AlseinTable input, .AlseinTable .form-control {
        min-width: auto;
    }
}

@media (max-width: 992px) {
    fieldset {
        padding: 15px 20px;
    }

    legend {
        font-size: 1.4em;
    }

    .btn-success {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    fieldset {
        padding: 15px 15px;
    }

    legend {
        font-size: 1.2em;
    }

    .AlseinTable td {
        display: block;
        width: 100%;
        padding-right: 0;
        margin-bottom: 10px;
    }

    .AlseinTable input,
    .AlseinTable select,
    .AlseinTable textarea {
        width: 100%;
    }

    .AlseinTable button {
        width: 100%;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    fieldset {
        padding: 10px 10px;
    }

    legend {
        font-size: 1em;
        padding: 8px 10px;
    }

    .btn-success {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}
