body {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;
}

.form-field {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, .85);
  padding: 0 20px 50px 20px;
  max-width: 300px;
  min-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar {
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    font-size: 16px;
    font-weight: 700;
}

.kuryeteslimatlarılogo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar ul li img {
    width: 120px;
    height: 60px;
    padding: 10px 50px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 50px;
}

.navbar ul li a:hover {
    background-color: #575757;
    border-radius: 5px;
}


/* Alt alta hizalama */
.form-container-wrapper {
  display: flex;
  flex-direction: column; /* Yatay yerine dikey hizalama */
  width: 100%;
}

#form-container,
#right-inputs {
  width: 100%;
}

/* Başlıkların yatay merkezlenmesi */
h1 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    text-align: center; /* Yatay merkezleme */
}

h2 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    text-align: center; /* Yatay merkezleme */
}

.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.form-group input {
  flex: 1;
  padding: 8px;
  margin-right: 5px;
}

.form-group button {
  background-color: red;
  color: white;
  border: none;
  border-radius: 3px;
  padding: 5px 10px;
  cursor: pointer;
}

.form-group button:disabled {
  background-color: gray;
  cursor: not-allowed;
}

.clock-container {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.add-btn {
  background-color: green;
  color: white;
  border: none;
  border-radius: 3px;
  padding: 5px 10px;
  cursor: pointer;
  display: block;
  margin: 10px 0;
  text-align: center;
}

#right-inputs select {
  margin-bottom: 10px;
  padding: 8px;
  width: 100%;
}

#calculate-btn {
  background-color: blue;
  color: white;
  border: none;
  border-radius: 3px;
  padding: 10px 20px;
  cursor: pointer;
  margin: 20px 0;
  text-align: center;
}

#results {
    display: none;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    height: auto;
    flex-direction: column;
}

.results-section {
    flex: 1;
    max-width: 300px;
    display: flex;
    font-size: 12px;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.results-section h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.results-section .result-value {
    font-size: 1.5em;
    font-weight: bold;
}

.copy-button {
    background-color: green;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 5px 10px;
    cursor: pointer;
    display: block;
    text-align: center;
}

.footer-bottom {
    width: 100%;
}

.footer-bottom a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, .85);
}

.logo-field {
  display: flex;
  justify-content: center;
}

.logo {
  width: 70px;
  height: 70px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-field {
    width: calc(98% - 12px);
    padding: 8px;
    resize: none;
}

@media (max-width: 768px) {
    .logo {
        width: 50px;
        height: 50px;
    }
    .footer-bottom a {
        font-size: 9px;
        text-align: center;
    }
    .navbar ul li a {
        padding: 10px 20px;
    }
    .navbar ul li img {
        padding: 10px 20px;
    }
    .form-field {
        padding: 0 20px 0px 20px;
    }
    .footer-bottom {
        margin-top: 0; /* Mobilde ekstra margin kaldırılır */
        position: sticky;
        bottom: 0;
        z-index: 1000;
    }
}
