/* /public/css/styles.css */

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    color: #333;
    padding: 20px;
}

/* Header */
h1 {
    margin-bottom: 20px;
    color: #00539C;
}

/* Navigation Menu */
nav {
    margin-bottom: 20px;
}

nav a {
    color: #00539C;
    text-decoration: none;
    margin-right: 15px;
}

nav a:hover {
    text-decoration: underline;
}

/* Form Styling */
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

form input[type="text"],
form input[type="password"],
form input[type="number"],
form select,
form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

form button {
    background-color: #00539C;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

form button:hover {
    background-color: #003f7d;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #fff;
}

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

table th {
    background-color: #00539C;
    color: #fff;
}

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

/* Button Links */
.button-link {
    display: inline-block;
    background-color: #00539C;
    color: #fff;
    padding: 8px 12px;
    border-radius: 3px;
    text-decoration: none;
    margin-right: 5px;
}

.button-link:hover {
    background-color: #003f7d;
}

/* Error Messages */
.error {
    color: red;
    margin-bottom: 15px;
}

/* Success Messages */
.success {
    color: green;
    margin-bottom: 15px;
}

/* /css/styles.css */

/* /css/styles.css */

/* WhatsApp Button Styles */
.whatsapp-button {
    display: inline-flex; /* Use flex to align items */
    align-items: center; /* Vertically center items */
    background-color: #25D366; /* WhatsApp Green */
    color: #ffffff;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.whatsapp-button:hover {
    background-color: #1ebe57; /* Darker Green on Hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.whatsapp-logo {
    width: 20px; /* Adjust size as needed */
    height: 20px;
    margin-right: 8px;
    object-fit: contain;
}

.whatsapp-text {
    display: inline-block;
}

/* Optional: Result Item Styles */
.result-item {
    margin-bottom: 20px;
}

.result-item p {
    margin: 5px 0;
}

.result-item hr {
    border: none;
    border-top: 1px solid #ccc;
    margin-top: 10px;
}
