/* General admin styles */
.wrap {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wrap h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.form-table {
    width: 100%;
    border-spacing: 0;
    margin-bottom: 20px;
}

.form-table th {
    text-align: left;
    width: 25%;
    padding: 10px;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

.form-table td {
    padding: 10px;
    vertical-align: top;
    border-bottom: 1px solid #ddd;
}

.form-table input[type="text"],
.form-table input[type="color"] {
    width: 100%;
    max-width: 300px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.form-table input[type="color"] {
    width: 50px;
}

.form-table input[type="text"]:focus,
.form-table input[type="color"]:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.5);
}

.submit input[type="submit"] {
    background-color: #007cba;
    border-color: #005a87;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.submit input[type="submit"]:hover {
    background-color: #005a87;
    border-color: #004970;
}

/* Enhancing color picker */
input[type="color"] {
    height: 40px;
    width: 50px;
    cursor: pointer;
    padding: 0;
    border: none;
    background: none;
}

/* Responsive styling */
@media (max-width: 768px) {
    .form-table th,
    .form-table td {
        display: block;
        width: 100%;
        text-align: left;
    }

    .form-table th {
        font-weight: bold;
        margin-top: 10px;
    }
}
