/* General styles */
body {
    background-color: #f8f9fa;
    padding-top: 40px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.container {
    max-width: 800px;
}

/* Logo styling */
.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo img {
    width: 150px;
    height: auto;
}

/* Main card styling */
.main-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 40px;
}

.card-title {
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

/* Form styling */
.form-label {
    color: #555;
    font-weight: 500;
}

/* Button styling */
.btn-primary {
    background-color: #f15a24;
    border-color: #f15a24;
    padding: 10px 25px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #d94e1f;
    border-color: #d94e1f;
}

/* Results page specific styles */
.prediction {
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
    margin: 20px 0;
    text-align: center;
}

.result-section {
    margin-bottom: 30px;
}

.result-section h4 {
    color: #555;
    margin-bottom: 20px;
}

/* Result icons styling */
.result-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.result-icon {
    text-align: center;
}

.result-icon img {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
}

.result-icon span {
    display: block;
    color: #666;
}

.result-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 50px 0 50px 0;
}

.result-price h4 {
    margin: 0;
    color: #555;
}

.result-price .prediction {
    margin: 0;
}