/* Random Yes or No Generator Styles */
.random-yes-no-generator .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--primary-color);
}

.generator-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.wheel-container {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transform: rotate(0deg);
    transition: transform 3s ease-out;
    background: conic-gradient(
        var(--primary-color) 0% 50%,
        var(--primary-hover-color) 50% 100%
    );
}

.segment {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    transform-origin: center;
}

.segment.yes {
    transform: rotate(-45deg);
}

.segment.no {
    transform: rotate(135deg);
}

.spin-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.spin-button:hover {
    background-color: var(--primary-hover-color);
}

.output-container {
    margin-top: 20px;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.output-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.generator-toolbar {
    margin-top: 20px;
}

.generator-toolbar button {
    padding: 10px 20px;
    border: none;
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.generator-toolbar button:hover {
    background-color: var(--primary-hover-color);
}


