* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    background: #f4f6f8;
}

header {
    background: #2c3e50;
    color: white;
    padding: 15px;
    text-align: center;
}

section {
    background: white;
    margin: 20px;
    padding: 20px;
    border-radius: 6px;
}

.form-section form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

input, select, button {
    padding: 10px;
    border-radius: 10px;
}

button {
    background: #3498db;
    color: white;
    border: none;
    border-radius: 40px;
    cursor: pointer;
}

button:hover {
    background: #0c2a3c;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.delete-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.delete-btn:hover {
    background: #c0392b;
}

.summary-box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
#stage{
    border-radius: 15px;
}
