/* Toast notification */
.toast-container {
    max-width: 1150px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
    padding: 0 20px;
}

.toast {
    width: 50%;
    background-color: #e9f7f6;
    color: #155724;
    padding: 10px 15px;
    margin-bottom: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    border-left: 4px solid #16b3ac;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    text-align: left;
    animation: fadeIn 0.3s ease-out forwards;
}

/* Card container untuk menyusun card ke bawah */
.card-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
}

/* Styling untuk evaluation card */
.evaluation-card {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.evaluation-details {
    padding: 20px 20px 10px 20px;
}

.detail-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .toast-container {
        padding: 0 15px;
        margin-bottom: 50px;
    }

    .toast {
        width: 100%;
        margin-bottom: 0;
    }
}

/* Khusus untuk tampilan sangat kecil */
@media (max-width: 480px) {
    .toast-container {
        margin-bottom: 60px;
        padding: 0 10px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Style untuk input nama */
.form-control {
    width: 100%;
    padding: 8px 12px;
    height: 36px;
    border: 2px solid #16b3ac;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: box-shadow 0.3s;
    box-sizing: border-box;
}

.form-control:focus {
    box-shadow: 0 0 5px rgba(22, 179, 172, 0.5);
}

.detail-input {
    width: 100%;
    max-width: 300px;
}

/* Memperbaiki tampilan responsif */
.detail-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.detail-label {
    min-width: 80px;
    font-weight: 500;
}

.detail-separator {
    margin: 0 10px;
}

.start-button-container {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.start-button, .cancel-button {
    min-width: 120px;
    padding: 8px 15px;
    height: 36px;
    background-color: #16b3ac;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s;
}

.start-button:hover {
    background-color: #0f918c;
}

.cancel-button {
    background-color: #f0f0f0;
    color: #333;
}

.cancel-button:hover {
    background-color: #e0e0e0;
}

.mt-4 {
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .detail-row {
        align-items: center;
        margin-bottom: 5px;
    }

    .detail-input {
        max-width: 100%;
        flex: 1;
    }

    .start-button-container {
        justify-content: flex-end;
        width: 100%;
        margin-top: 5px;
    }

    .start-button, .cancel-button {
        width: auto;
        min-width: 100px;
        padding: 6px 12px;
        margin-top: 0;
        height: 32px;
    }

    .evaluation-details {
        padding: 15px 15px 8px 15px;
    }

    .detail-title {
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 480px) {
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .detail-label, .detail-separator {
        margin-bottom: 5px;
    }

    .detail-separator {
        display: none;
    }

    .detail-input {
        width: 100%;
        margin-top: 5px;
    }
}