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

body {
    background-color: #f7f1e3; 
    margin: 0;
    padding: 40px;
    color: #333;
}


form,
body > label,
body > input {
    display: block;
    max-width: 400px;
    margin-bottom: 10px;
}

label {
    font-weight: bold;
    margin-top: 10px;
}

input[type="text"],
input[type="number"],
input[type="url"] {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}


input[type="button"] {
    background-color: #d4a373;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}

input[type="button"]:hover {
    background-color: #bc8a5f;
}


h2 {
    margin-top: 40px;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background-color: #e6ccb2;
}

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

tfoot {
    background-color: #f3e5d8;
    font-weight: bold;
}


td img {
    width: 80px;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
}


td img:hover {
    transform: scale(1.5);
    z-index: 10;
}
