/* PadTask Common Styles */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

/* Navigation */
nav {
    background: white;
    padding: 0 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    height: 72px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.logo-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-link:hover {
    color: #3171ef;
}

/* User Info */
.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-name {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.95rem;
}

#user-button {
    display: flex;
    align-items: center;
}

/* Status Badges */
.status-preparing {
    background: #fff4e6;
    color: #e67e22;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-ready {
    background: #e8f5e9;
    color: #27ae60;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Buttons */
.btn-primary {
    background: #3171ef;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #2560d9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(49, 113, 239, 0.3);
}

.back-button,
.back-link {
    background: #f0f4ff;
    color: #3171ef;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.back-button:hover,
.back-link:hover {
    background: #e0e7ff;
}

/* Stat Cards */
.stat-card {
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.stat-card label {
    font-size: 0.75rem;
    color: #666;
    display: block;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3171ef;
}

/* Container Styles */
.dashboard-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin: 2rem 0;
}

.property-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.property-card:hover {
    border-color: #3171ef;
    box-shadow: 0 4px 12px rgba(49, 113, 239, 0.15);
    transform: translateY(-2px);
}

.data-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.5rem;
}

/* Form Inputs */
.address-input {
    flex: 1;
    padding: 1.15rem 1.5rem;
    border: 2px solid #d1d9ff;
    border-radius: 8px;
    font-size: 1.05rem;
    font-family: 'Inter', Arial, sans-serif;
    transition: all 0.2s;
    background: white;
    color: #1a1a1a;
}

.address-input:focus {
    outline: none;
    background: white;
    border-color: #3171ef;
    box-shadow: 0 0 0 4px rgba(49, 113, 239, 0.15);
}

/* Responsive Design */
@media (max-width: 968px) {
    nav {
        padding: 0 5%;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-card .value {
        font-size: 1.25rem;
    }

    .dashboard-mockup {
        padding: 1.5rem;
    }

    .property-card {
        padding: 1.25rem;
    }

    .data-card {
        padding: 1.25rem;
    }
}
