/* Common styles for admin forms and tables */
.form-container, .list-container {
    background: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input[type='text'],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box; /* Important for consistent sizing */
    font-size: 1rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
    padding-left: 40px;
}

.input-with-icon textarea + i {
    top: 20px; /* Adjust for textarea */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

table th, table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

table th {
    background-color: #f2f2f2;
}

table tr:nth-child(even) {background-color: #f9f9f9;}

.btn-edit, .btn-delete {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
    margin-right: 5px;
}

.btn-edit { background-color: #5bc0de; }
.btn-delete { background-color: #d9534f; }

.success { color: #3c763d; background-color: #dff0d8; padding: 10px; border: 1px solid #d6e9c6; border-radius: 5px; margin-bottom: 1rem; }
.error { color: #a94442; background-color: #f2dede; padding: 10px; border: 1px solid #ebccd1; border-radius: 5px; margin-bottom: 1rem; }
