/* Admin CSS for Document Manager Plugin */

/* General Styles for Admin UI */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

h1, h2 {
    color: #0073aa;
}

/* Form Styles */
.tlm_doc_form {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tlm_doc_form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.tlm_doc_form input[type="text"],
.tlm_doc_form select,
.tlm_doc_form input[type="date"],
.tlm_doc_form input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    margin-bottom: 15px;
}

.tlm_doc_form input[type="submit"] {
    background-color: #0073aa;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
}

.tlm_doc_form input[type="submit"]:hover {
    background-color: #005177;
}

/* Table Styles */
.tlm_doc_table {
    width: 100%;
    border-collapse: collapse;
}

.tlm_doc_table th,
.tlm_doc_table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e1e1e1;
}

.tlm_doc_table th {
    background-color: #0073aa;
    color: #ffffff;
}

.tlm_doc_table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.tlm_doc_table tr:hover {
    background-color: #f1f1f1;
}
