/* Estilos generales y de layout para todas las vistas */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.card-custom {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
}
.btn-custom {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
}
.planet-card {
    border-left: 4px solid #667eea;
    margin-bottom: 15px;
}
.house-card {
    border-left: 4px solid #764ba2;
    margin-bottom: 15px;
}
.emoji-large {
    font-size: 2rem;
}
.interpretation-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}
.cliffhanger-text {
    font-size: 1.15rem;
    color: #333;
}
.fw-semibold {
    font-weight: 600;
}
/* Google Places Autocomplete */
.pac-container {
    background-color: #fff;
    position: absolute !important;
    z-index: 1051 !important;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
    font-family: inherit;
}
.pac-item {
    cursor: pointer;
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.2s ease;
}
.pac-item:hover, .pac-item-selected {
    background-color: #f8f9fa;
}
.pac-item:last-child {
    border-bottom: none;
}
.pac-icon {
    margin-right: 8px;
    color: #667eea;
}
.pac-item-query {
    font-weight: 600;
    color: #495057;
}
.pac-matched {
    font-weight: 700;
    color: #667eea;
}
