#whatsapp-chat-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#whatsapp-button {
    background-color: <?php echo get_option( 'whatsapp_chat_float_button_color', '#25D366' ); ?>;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    cursor: pointer;
}

#whatsapp-form {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#whatsapp-form form {
    display: flex;
    flex-direction: column;
}

#whatsapp-form label {
    margin-bottom: 5px;
}

#whatsapp-form input, #whatsapp-form textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#whatsapp-form button {
    background-color: <?php echo get_option( 'whatsapp_chat_float_button_color', '#25D366' ); ?>;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}
/* Example admin-style.css */
.wrap {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-table {
    width: 100%;
}

.form-table th,
.form-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.form-table th {
    width: 30%;
}

.form-table input[type="text"] {
    width: 100%;
    max-width: 400px;
}
