@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.logo {
    width: 150px;
    margin: 20px;
}

.title-section {
    text-align: center;
    margin-bottom: 20px;
}

.title-section h2 {
    color: #ff8d77;
    font-weight: 700;
    font-size: 24px;
}

.title-section p {
    color: #555;
    margin-top: -10px;
    font-weight: 400;
    font-size: 16px;
}

.d-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.btn-option {
    background-color: #f4f8ff;
    border-radius: 12px;
    padding: 40px 4px 19px 4px;
    text-align: center;
    text-decoration: none;
    color: #333;
    width: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
    flex-grow: 1;
}

.btn-option img {
    display: block;
    margin: 0 auto 10px;
    width: 100px;
    height: 100px;
    margin-bottom: 65px;
}

.btn-option span {
    font-weight: bold;
    display: block;
    font-size: 16px;
    color: inherit;
}

.btn-option.dose-active {
    background-color: #3363ae;
    color: white;
}

.btn-option:hover {
    background-color: #e9ecef;
}

.btn-option.dose-active:hover {
    background-color: #002366;
}

form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"],
input[type="number"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    padding: 15px;
    background-color: #3363ae;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    width: 80%;
    margin: 0 auto;
}

button:hover {
    background-color: #002366;
}

.gap-4 {
    gap: 16px;
}

.start-page p {
    color: #000;
    margin-bottom: 40px;
    font-size: 16px;
}

.start-page .logo {
    width: 200px;
    margin-bottom: 20px;
}

.start-page-button {
    bottom: 40px;
    position: absolute;
    background-color: #3363ae;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    padding: 15px;
    width: 80%;
    right: 6%;
}

.start-page-button:hover {
    background-color: #002366;
}

.capsules-section .capsule-title {
    color: #3363ae;
    font-weight: bold;
    text-align: center;
}

.capsule-result-circle {
    background-color: #e1e8f3;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 35px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    align-items: center;
}

.capsule-image {
    width: 50px;
    margin-bottom: 20px;
}

.capsule-count {
    font-size: 48px;
    font-weight: bold;
    color: #3363ae;
    margin: 0;
}

.capsule-info {
    color: #333;
    font-weight: bold;
    margin-top: 10px;
    font-size: 14px;
}

.result-info-section {
    margin-bottom: 20px;
}

.result-info-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    background-color: #f9f9f9;
    margin: 15px auto;
    width: 80%;
}

.result-info-block .info-icon {
    width: 30px;
    margin-bottom: 5px;
    margin-right: 10px;
}

.result-info-block span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.result-info-block .badge {
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
    background: #2559a9;
    padding: 5px;
    border-radius: 9px;
    color: white;
}

.reset-btn {
    background-color: #3363ae;
    color: white;
    border-radius: 5px;
    border: none;
    display: block;
    margin: 0 auto
}

.dose-unit-label {
    flex-direction: column;
    display: flex;
}

.image-label {
    display: flex;
}

.text-alert {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}
