﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1500px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* flex */
.flex-container {
    display: flex;
    flex-wrap: wrap;
}

.flex-item {
    margin-right: 20px;
}

/* Table */
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    border: 1px dotted #000;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

tbody tr:hover {
    background-color: #f5f5f5;
    cursor: pointer;
}

/* grid */
#objectTable {
    width: 100%;
}

.grid-container {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 10px;
}

.grid-item {
    border: 1px solid #ccc;
    align-items: center;
}

    .grid-item textarea {
        width: 100%; /* Genişliği dolu olsun */
    }

/* Object Instance */
.property-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.property-input {
    margin-bottom: 10px;
}

#createdObject {
    border: 1px solid #ddd;
    padding: 10px;
    white-space: pre-wrap;
}

.draggable-row {
    cursor: move;
}

/* CSS Dosyanızın İçinde */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f8f9fa; /* Footer arkaplan rengi */
    padding: 10px 0; /* Footer içeriği içindeki boşluklar */
    border-top: 1px solid #dee2e6; /* Üst kenar çizgisi (isteğe bağlı) */
    text-align: center; /* Footer içeriğini ortala */
    font-size: 14px; /* Metin boyutu (isteğe bağlı) */
    color: #6c757d; /* Metin rengi (isteğe bağlı) */
}

.form-control.available {
    width: 130%;
}

.sticky {
    position: fixed;
    top: 0;
    z-index: 100;
}

    .sticky + .content {
        padding-top: 102px;
    }


.modal-dialog {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Hide Arrows From Input Number */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
/* Hide Arrows From Input Number */