/* css/bigidcmp-admin-style.css */

/* General body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9; /* Light background for better readability */
    color: #333; /* Dark text color */
}

/* Header styles */
h1, h2, h3 {
    color: #0073aa; /* WordPress admin blue */
}

/* Button styles */
.button {
    background-color: #0073aa; /* WordPress admin blue */
    color: #fff; /* White text */
    border: none;
    border-radius: 3px;
    padding: 10px 15px;
    text-decoration: none;
}

.button:hover {
    background-color: #005177; /* Darker blue on hover */
}

/* Form styles */
form {
    margin: 20px 0;
}

input[type="text"],
input[type="url"],
textarea {
    width: 100%; /* Full width for inputs */
    padding: 10px;
    border: 1px solid #ccc; /* Light border */
    border-radius: 3px;
    margin-bottom: 10px; /* Space between inputs */
}

/* Success message styles */
.notice-success {
    background-color: #dff0d8; /* Light green background */
    color: #3c763d; /* Dark green text */
    padding: 15px;
    border: 1px solid #d6e9c6; /* Green border */
    border-radius: 3px;
}