/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: #F7F7F7;
    margin: 0;
    padding: 20px;
    color: #2E2E2E;
}

/* HEADERS */
h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

/* BOXES */
.box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* BUTTONS */
.btn {
    background: #3A7D44;
    color: white;
    padding: 12px 18px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}
.btn:hover {
    background: #336C3A;
}

/* FORMS */
input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #CCC;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 15px;
}
label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

/* TABLES */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}
th {
    background: #3A7D44;
    color: white;
    padding: 12px;
    text-align: left;
}
td {
    padding: 10px;
    border-bottom: 1px solid #EEE;
}
tr:hover {
    background: #F3F9F3;
}
