:root {
    --brand: #FCFCFC;
    --accent: #FCFCFC;
    --muted: #FCFCFC;
    --bg: #f7f9fb;
    --card-bg: #FCFCFC;
    --border-color: #e6dccd;
    --txt: #222;
    --font-sans: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}





fieldset {
    background: #FCFCFC;
    border: 1px solid #ccc;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 12px #000;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    fieldset:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

legend {
    padding: 0 10px;
    font-weight: 600;
    color: #47BCC4;
    font-size: 1.05rem;
    position: relative;
}



.AlseinTable {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

    .AlseinTable td {
        background-color: #FCFCFC;
        padding: 8px 10px;
        vertical-align: middle;
        border-radius: 4px;
    }

        .AlseinTable td:first-child {
            width: 28px;
            text-align: center;
            color: #FCFCFC;
            font-weight: 700;
        }

.form-control {
    display: block;
    width: 100%;
    padding: 10px 12px;
    font-size: 0.95rem;
    line-height: 1.25;
    color: var(--txt);
    background-color: #FCFCFC;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: all 0.25s ease;
}

    .form-control:focus {
        background-color: #fffaf3;
        border-color: rgba(13,110,253,0.65);
        box-shadow: 0 6px 18px rgba(13,110,253,0.15);
        transform: translateY(-2px);
        outline: none;
    }

/*
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #47BCC4;
}
*/



.my-btn {
    --bs-btn-color: #fff;
    --bs-btn-bg: #1675A8;
    --bs-btn-border-color: #198754;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg #157347 : #157347;
    --bs-btn-hover-border-color: #146c43;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #146c43;
    --bs-btn-active-border-color: #13653f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #198754;
    --bs-btn-disabled-border-color: #198754;
}

    .my-btn:hover {
        background: linear-gradient(90deg, #1675A8, #1675A8);
        box-shadow: 0 6px 15px #1675A8;
        transform: translateY(-2px);
    }

    .my-btn:active {
        transform: translateY(0);
        box-shadow: 0 3px 8px #1675A8;
    }




.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-control {
    max-width: 80%;
    max-height: 200%;
    padding: 14px 16px; /* daha küçük padding */
    border: 1px solid #ccc;
    border-radius: 20px; /* yuvarlak hatlar */
    background: #FCFCFC;
    font-size: 0.9rem; /* biraz küçültüldü */
    transition: all 0.2s ease;
}

    /* Hover & Focus efekti */
    .form-control:focus {
        border-color: #1675A8;
        box-shadow: 0 0 6px rgba(22,117,168,0.25);
        outline: none;
    }

/* Floating label */
.floating-label label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 0.9rem;
    pointer-events: none;
    transition: 0.2s ease all;
    background: transparent;
    padding: 0 4px;
}

/* Focus veya içi dolu olduğunda yukarı çık */
.form-control:focus + label,
.form-control:not(:placeholder-shown) + label {
    top: -8px;
    left: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1675A8;
    background: #FCFCFC; /* label altına beyaz zemin */
    border-radius: 8px;
}
.miktar{
    color: #444;
}


.amount{
    font-weight: normal;
}

.total{
    font-weight: normal;
}




.table-striped tr {
    transition: background-color 0.3s ease;
}

    .table-striped tr:hover {
        background-color: rgba(13,110,253,0.05);
    }

@media (max-width: 760px) {
    .AlseinTable td {
        display: block;
        width: 100%;
    }

    fieldset {
        padding: 14px;
    }
}

:focus {
    outline: 3px solid rgba(13,110,253,0.12);
    outline-offset: 2px;
}
