/* style.css */
.zodiac-matcher {
    max-width: 500px;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.zodiac-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.zodiac-select-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.zodiac-select-group select {
    flex: 1;
    min-width: 180px;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d1d1d6;
    border-radius: 10px;
    background: #fff;
    color: #1d1d1f;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: border-color 0.2s;
}

.zodiac-select-group select:focus {
    outline: none;
    border-color: #007aff;
}

.zodiac-separator {
    font-size: 16px;
    color: #86868b;
    font-weight: 500;
}

.zodiac-submit {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    background: #007aff;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.zodiac-submit:hover {
    background: #0051d5;
}

.zodiac-widget {
    max-width: 200px;
    margin: 20px auto;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.zodiac-meter {
    text-align: center;
}

.zodiac-meter-label {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 16px;
    font-weight: 500;
}

.zodiac-meter-circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
}

.zodiac-meter-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.zodiac-meter-bg {
    fill: none;
    stroke: #f5f5f7;
    stroke-width: 8;
}

.zodiac-meter-progress {
    fill: none;
    stroke: #007aff;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.zodiac-meter-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1f;
}

@media (max-width: 600px) {
    .zodiac-matcher {
        padding: 24px;
    }
    
    .zodiac-select-group {
        flex-direction: column;
    }
    
    .zodiac-select-group select {
        width: 100%;
    }
    
    .zodiac-separator {
        display: none;
    }
}