body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e9ebee;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 900px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 300;
}

p {
    color: #7f8c8d;
    font-size: 1.1em;
}

.button-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.main-button {
    display: block;
    padding: 20px 0;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-button:hover {
   
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.main-button.primary {
    background-color: #3498db;
}

.main-button.primary:hover {
    background-color: #2980b9;
}

.main-button.success {
    background-color: #27ae60;
}

.main-button.success:hover {
    background-color: #229954;
}

.main-button.back {
    background-color: #7f8c8d;

}

.main-button.back:hover {
    background-color: #6c757d;
}

.form-page .container, .results-page .container {
    padding: 30px;
}
.form-content-readonly input,
.form-content-readonly textarea {
    border: none;
    background-color: transparent;
    padding: 0;
    display: block;
    width: 100%;
}
.form-content-readonly table td {
    padding: 10px;
}
.form-content-readonly .info-row {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}


.form-header-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}
.form-header-info .info-row {
    display: flex;
    flex-direction: column;
}
.form-header-info .info-row label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}
.form-header-info .info-row input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.section {
    margin-top: 30px;
    position: relative;
}

.section h2 {
    font-size: 1.4em;
    color: #2c3e50;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.small-button-add, .small-button-review, .small-button-pdf {
    display: inline-block;
    padding: 8px 12px;
    margin: 4px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.small-button-add {
    background-color: #3498db;
}
.small-button-review {
    background-color: #4da31f;
}
.small-button-pdf {
    background-color: #0062ff;
}

.small-button-review:hover {
    background-color: #3d840b;
}
.small-button-add:hover {
    background-color: #2980b9;
}
.small-button-pdf:hover {
    background-color: #1650a2;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fcfcfc;
}

table th, table td {
    padding: 12px;
    border: 1px solid #eee;
    text-align: left;
}
table th {
    background-color: #f4f6f8;
    color: #333;
}
table td input[type="text"],
table td textarea,
.edit-param-form select,
.add-form select {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
    transition: border-color 0.3s;
}

table td input[type="text"]:focus,
table td textarea:focus,
.edit-param-form select:focus,
.edit-param-form input:focus,
.add-form select:focus,
.add-form input:focus {
    border-color: #3498db;
    outline: none;
}
.notlar-textarea {
    height: 60px !important;
    min-height: 60px !important;
    resize: vertical !important;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

button[type="submit"] {
    display: block;
    width: 100%;
    padding: 15px;
    margin-top: 30px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}
button[type="submit"]:hover {
    background-color: #229954;
}

.edit-param-form .edit-param-form-actions .main-button {
    width: 100% !important;
}
/* Mevcut CSS kodlarınıza bu yeni kuralları ekleyin */

.container {
    /* ... Diğer stiller ... */
    position: relative; /* Butonun konumunu belirlemek için */
}

.home-button {
    position: absolute; /* Header'a göre konumlandırma */
    top: 25px;
    right: 25px;
    font-size: 28px; /* Daha büyük ev simgesi */
    padding: 8px; /* Butonun etrafına boşluk ekler */
    background-color: #3498db; /* Arka plan rengi */
    color: #fff; /* Simge rengi */
    border-radius: 8px; /* Yuvarlak köşeler */
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.home-button:hover {
    background-color: #2980b9;
    transform: scale(1.1); /* Fare üzerine gelince biraz büyür */
}
/* Sayfalama (Pagination) stilleri */
.pagination {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}
.pagination a {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    margin: 0 4px;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.pagination a:hover {
    background-color: #eee;
}
.pagination a.active {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
}
/* Sayfalama (Pagination) stilleri */
.pagination {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}
.pagination a {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    margin: 0 4px;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.pagination a:hover {
    background-color: #eee;
}
.pagination a.active {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
}
.stt{
      height: 20px;
    margin-top: 30px;
}
