/*
 Theme Name:   Investex Child
 Template:     investex
 Description:  Child theme for Investex
 Author:       Muneeb ur Rehman
 Version:      1.0
*/

/* Target only the custom login form with the specific class */
.custom-login-form {
    display: flex;
    flex-direction: column; /* Stack the fields vertically */
    gap: 20px; /* Add space between form elements */
    width: 100%;
    max-width: 500px;
    margin: 0 auto; /* Center the form */
    padding: 20px;
}

/* Style form fields to be full width */
.custom-login-form input, .custom-login-form button {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
}

.data-table tr th {
    text-align: left;
}


 /* Admin File Table Styling */
table.admin-form {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

table.admin-form thead {
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

table.admin-form tbody tr:hover {
    background-color: #f1f1f1;
}

table.admin-form a {
    text-decoration: none;
    font-weight: bold;
}

table.admin-form a[download] {
    color: #2980b9;
}

table.admin-form a.delete-file {
    color: #e74c3c;
}

table.admin-form a.delete-file:hover {
    text-decoration: underline;
}

h3.admin-form-title {
    font-family: Arial, sans-serif;
    font-size: 24px;
    margin-top: 30px;
    color: #2c3e50;
}
.custom-login-form button {
    justify-content: center;
}
.client-task-list {
    list-style: none;
    padding: 0;
}
.client-task-list li {
    background: #f7f7f7;
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 10px;
}
.task-response-form {
    margin-top: 15px;
}
.task-response-form textarea {
    width: 100%;
    padding: 10px;
    resize: vertical;
}
.task-response-form button {
    margin-top: 10px;
}
