   .chose-category {
    display: flex;
    align-items: center; /* Vertically centers the content */
    justify-content: center; /* Horizontally centers the content */
    text-align: center; /* Center the text inside */
}

.section-title p {
    font-size: 1.0rem;
    font-weight: bold;

}

.chose-category-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card-select {
    width: 100%;
    max-width: 400px; /* Ensures the form is not too wide */
}

.btn-list {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between the buttons */
    margin-top: 20px;
}

.btn.yes, .btn.no {
    width:200px; /* Make the button square */
    height: 100px;
    border: 2px solid; /* Thin border */
    border-radius: 15px; /* Rounded corners */
    font-size: 20px; /* Increase font size for readability */
    font-weight: bold; /* Make the text bold */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s; /* Add a hover effect */
}

.btn.yes {
    /* Bootstrap success color */
    border-color: #28a745;
}

.btn.no {
    background-color: #dc3545; /* Bootstrap danger color */
    border-color: #dc3545;
}

.btn.yes:hover, .btn.no:hover {
    color: white;
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Add a shadow effect */
}

 .gorgeous-btn {
        position: relative;
        display: inline-block;
        padding: 12px 24px;
        font-size: 18px;
        font-weight: bold;
        color: white;
        background: linear-gradient(145deg, #ff416c, #ff4b2b); /* Gradient background */
        border: none;
        border-radius: 50px; /* Smooth rounded edges */
        box-shadow: 0 8px 15px rgba(255, 75, 43, 0.4); /* Glowing shadow */
        overflow: hidden;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

    .gorgeous-btn::before {
        color: white;
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease-in-out;
    }

    .gorgeous-btn:hover {
        transform: translateY(-3px); /* Lift the button on hover */
        box-shadow: 0 12px 20px rgba(255, 75, 43, 0.6); /* Enhance glow on hover */
    }

    .gorgeous-btn:active {
        transform: scale(0.95); /* Slightly shrink on click */
        box-shadow: 0 5px 10px rgba(255, 75, 43, 0.5); /* Reduce shadow on click */
    }

    .gorgeous-btn.no {
        background: linear-gradient(145deg, #fb7199, #e70014); /* Red gradient for "No" */
        box-shadow: 0 8px 15px rgba(255, 71, 87, 0.4);
    }

    .gorgeous-btn.yes {
        background: linear-gradient(145deg, #0b7b71, #0fffad); /* Green gradient for "Yes" */
        box-shadow: 0 8px 15px rgba(46, 196, 182, 0.4);
    }

.progress-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.progress {
    height: 30px;
    background-color: #e9ecef;
    border-radius: 15px;
    overflow: hidden;
}

.progress-bar {
    line-height: 30px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}


.vote-count span {
    margin-right: 10px;
}

    .custom-progress {
    background-color: #f0f0f0; /* Light background for contrast */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Ensures progress bars stay inside rounded borders */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.yes-bar {
    background: linear-gradient(90deg, #28a745, #65c267); /* Gradient for the yes bar */
    animation: progressAnimation 2s ease-in-out forwards; /* Smooth animation */
}

.no-bar {
    background: linear-gradient(90deg, #dc3545, #ff6f61); /* Gradient for the no bar */
    animation: progressAnimation 2s ease-in-out forwards; /* Smooth animation */
}


.vote-count {
    display: flex;
    justify-content: space-between; /* Distribute vote counts evenly */
    font-weight: bold; /* Make the text stand out */
    color: #333; /* Dark text for readability */
}


canvas {
    width: 100% !important;
    height: 400px !important;
}
.text-main-color {
    color: #007bff; /* Change this to your primary color */
}

.poll-list {
    padding: 0;
    margin: 0;
}

.list-group-item {
    border: none;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #f8f9fa;
    transition: background 0.3s, box-shadow 0.3s;
}

.list-group-item:hover {
    background: #e9ecef;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.poll-link {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    display: block;
}

.poll-link:hover {
    color: #007bff;
    text-decoration: underline;
}

.form-select {
    position: relative;
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover and focus effects */
.form-select:hover, 
.form-select:focus {
    border-color: #28a745;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

.form-select::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border: 2px solid #007bff;
    transition: width 0.3s ease;
}

.form-select:hover::after, 
.form-select:focus::after {
    width: 100%;
}

    .notice-box {
    padding: 15px 20px;
    background: linear-gradient(145deg, #CDDC39, #009688); /* Vibrant yellow-orange gradient */
    border-left: 6px solid #d9534f; /* Highlighted border */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    display: flex;
    align-items: center;
    margin: 20px 0; /* Space around the notice */
    position: relative;
}

.notice-title {
    text-align: center;
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #fff; /* Dark text for readability */
    text-transform: uppercase; /* Makes the text appear more striking */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Subtle text shadow for emphasis */
}

.notice-box::before {
    position: absolute;
    top: -12px;
    left: 15px;
    background: #d9534f; /* Red background to highlight the label */
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}
.notice-text {
    text-align: center; /* Centers text inside this div */
    margin-top: 10px; /* Optional: adds space between text and the notice box */
}

.notice-text small {
    display: block; /* Make the small tag a block element to ensure centering */
    font-size: 14px; /* Optional: Adjust font size if needed */
    color: #333; /* Optional: Customize text color */
}

.btn-glossy {
    float: right;
    display: inline-block;
    padding: 6px 12px; /* Thin and small padding */
    font-size: 12px; /* Small font size */
    font-weight: bold;
    color: #fff; /* White text color */
    background: linear-gradient(145deg, #00bfae, #00796b); /* Glossy green gradient */
    border: none;
    border-radius: 20px; /* Rounded corners for a pill shape */
    text-align: center;
    text-decoration: none; /* Remove underline */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Glossy effect */
    transition: background 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
}

.btn-glossy:hover {
    color: white;
    background: linear-gradient(145deg, #009688, #004d40); /* Darker green for hover effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.btn-glossy:active {
    background: linear-gradient(145deg, #00796b, #004d40); /* Even darker green for active state */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow on click */
    transform: translateY(2px); /* Slightly move the button down on click */
}

