body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #ffffff;
    color: #080685;
    padding: 15px;
    max-width: 600px;
    margin: 0 auto;
}
section {
    background: #ffffff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #eeeeee;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
table { width: 100%; border-collapse: collapse; margin-bottom: 10px; }
td { vertical-align: middle; padding: 5px 2px; }
input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
}
button {
    padding: 14px;
    width: 100%;
    border: none;
    border-radius: 8px;
    background: #080685;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}
button.main { background: #9b0202; }
button.delete-btn {
    background: #080685;
    width: 44px;
    height: 44px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bar {
    margin-bottom: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 10px solid #080685;
}