* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f8fafc;
    color: #2d3748;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-container {
    position: relative;
    text-align: center;
}

.back-arrow {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #3182ce;
    font-size: 22px;
}

.logo {
    width: 200px;
}

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

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

label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 8px;
}

select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    background: #f7fafc;
    font-size: 14px;
}

select:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 2px rgba(49, 130, 206, 0.2);
}

.confirmation {
    background-color: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 5px;
    padding: 15px;
    margin: 20px 0;
    display: none;
}

.confirmation p {
    color: #e53e3e;
    font-weight: 500;
    margin-bottom: 15px;
}

.button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.delete-button {
    background-color: #e53e3e;
    color: white;
}

.delete-button:hover {
    background-color: #c53030;
}

.cancel-button {
    background-color: #e2e8f0;
    color: #4a5568;
    margin-right: 10px;
}

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

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 20px;
    }
}