/* Container */
.stylish-contact-container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* Form Styles */
.stylish-contact-form input,
.stylish-contact-form select,
.stylish-contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 6px 0 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.stylish-contact-form input:focus,
.stylish-contact-form select:focus,
.stylish-contact-form textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
    outline: none;
}

.stylish-contact-form button {
    background: linear-gradient(90deg, #4CAF50, #2e8b57);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: 0.3s;
}

.stylish-contact-form button:hover {
    background: linear-gradient(90deg, #45a049, #246b45);
}

/* Table Styles */
.stylish-contact-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    font-size: 14px;
}

.stylish-contact-table th,
.stylish-contact-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.stylish-contact-table th {
    background: #4CAF50;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stylish-contact-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.stylish-contact-table tr:hover {
    background-color: #f1f1f1;
}

/* Action Buttons */
.contact-btn {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    margin: 2px;
    transition: 0.3s;
}

.contact-btn.call {
    background: #28a745;
}

.contact-btn.call:hover {
    background: #218838;
}

.contact-btn.whatsapp {
    background: #25D366;
}

.contact-btn.whatsapp:hover {
    background: #1ebe5b;
}

.contact-btn.edit {
    background: #007bff;
}

.contact-btn.edit:hover {
    background: #0056b3;
}

.contact-btn.delete {
    background: #dc3545;
}

.contact-btn.delete:hover {
    background: #b02a37;
}

/* Search Bar */
.contact-search {
    margin-bottom: 15px;
    text-align: right;
}

.contact-search input {
    padding: 8px;
    width: 250px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
