/*
Theme Name: Cabbyz
Theme URI: https://cabbyz.com
Author: Cabbyz Team
Description: A custom ride-sharing and carpooling theme designed like BlaBlaCar.
Version: 1.0
Text Domain: cabbyz
*/

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f6f8;
    color: #333;
}

.cabbyz-hero {
    background: #00053d;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.cabbyz-search-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    max-width: 800px;
    margin: 30px auto 0 auto;
    display: flex;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cabbyz-search-box input, .cabbyz-search-box button {
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    flex: 1;
}

.cabbyz-search-box button {
    background: #00aff5;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.cabbyz-search-box button:hover {
    background: #008cc4;
}