/* admin panel specific styles */
.errors {
    color: red;
    list-style: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}
table, th, td {
    border: 1px solid #ccc;
}
th, td {
    padding: 8px;
    text-align: left;
}

.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.custom-file-upload:hover {
    background-color: #e0e0e0;
}

input[type="file"].hidden-input {
    display: none;
}

#file-name-display {
    margin-left: 10px;
    font-style: italic;
    color: #555;
}