#kidem-container {
    width: 80%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.form-container {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

label {
    font-weight: bold;
    flex: 1;
}

.input-group {
    flex: 3;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.input-group select,
input[type="number"] {
    width: 30%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #444;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.result-container {
    display: flex;
    justify-content: space-between;
}

.result-box {
    width: 48%;
    background: #f1f1f1;
    padding: 10px;
    border: 1px solid #ddd;
}

.result-box h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.developer-link {
    text-align: center;
    margin-top: 20px;
}

.developer-link a {
    color: #d32f2f;
    text-decoration: none;
    font-weight: bold;
}
