/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.thinc-tabs-wrap{
	margin-bottom:30px;
}
.thinc-tabs-wrap li {
    list-style: none;
    border: 1px solid #1d7979;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
	margin:10px 10px 0 0;
}
.thinc-tabs-wrap li:hover, .tab-active{
	background:#1d7979 !important;
	color:#fff !important;
}
.searchMemberWrapper {
    position: relative;
}
.membersWrap {
    max-height: 300px;
    overflow-y: scroll;
    background: #fff;
    box-shadow: 0 5px 10px #ddd;
    display: none;
    position: absolute;
    width: 100%;
    top: 45px;
}
.membersWrap li {
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
    list-style: none;
    font-size: 14px;
    color: #000;
	cursor:pointer;
}
.membersWrap li:hover{
	background:#f1f1f1;
}
.thinc-input-wrap label {
    font-size: 14px;
    margin-bottom: 8px;
}
.thinc-input-wrap select, .thinc-input-wrap  input, .thinc-input-wrap  textarea{
    border: 1px solid #ddd !important;
    height: 50px;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
	outline:none;
}
.thinc-input-wrap  textarea{
	height:200px !important;
}
.thinc-form-wrap{
	display:flex;
	flex-wrap:wrap;
	gap:15px;
}
.thinc-input-wrap{
	width:100%;
}
.w-50{
	width:calc(50% - 10px);
}

.nominee-alert, .voting-alert  {
  padding: 15px;
  margin: 20px 0px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  display:none;
  background:#77b600;
}
.aw-danger{
  background:#c23830;
}





/*===============================================
 * Poll (shortcode + Elementor) — card layout
 *==============================================*/
.thinc-poll {
    --thinc-poll-accent: #1d7979;
    --thinc-poll-accent-hover: #156060;
    --thinc-poll-border: #e6e8ec;
    --thinc-poll-bg: #ffffff;
    --thinc-poll-muted: #5c6370;
    box-sizing: border-box;
    max-width: 520px;
    margin: 0 auto 1.5rem;
    font-family: inherit;
    line-height: 1.45;
}

.thinc-poll *,
.thinc-poll *::before,
.thinc-poll *::after {
    box-sizing: border-box;
}

.thinc-poll__inner {
    border: 1px solid var(--thinc-poll-border);
    border-radius: 12px;
    background: var(--thinc-poll-bg);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.thinc-poll__header {
    padding: 1.25rem 1.35rem 1rem;
    border-bottom: 1px solid #f0f2f5;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}

.thinc-poll__title {
    margin: 0;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1a1d24;
}

.thinc-poll__form {
    padding: 1.1rem 1.35rem 1.35rem;
}

.thinc-poll__options {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.thinc-poll__option {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--thinc-poll-border);
    border-radius: 10px;
    background: #fafbfc;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.thinc-poll__option:hover {
    border-color: #cfd4dc;
    background: #fff;
}

.thinc-poll__option:has(.thinc-poll__radio:checked) {
    border-color: var(--thinc-poll-accent);
    background: #f3faf9;
    box-shadow: 0 0 0 1px rgba(29, 121, 121, 0.12);
}

.thinc-poll__radio {
    flex-shrink: 0;
    width: 1.1rem;
    height: 1.1rem;
    margin: 0.15rem 0 0;
    accent-color: var(--thinc-poll-accent);
    cursor: pointer;
}

.thinc-poll__option-text {
    flex: 1;
    font-size: 0.95rem;
    color: #21252c;
    font-weight: 500;
}

.thinc-poll__field {
    margin-bottom: 1rem;
}

.thinc-poll__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--thinc-poll-muted);
    margin-bottom: 0.4rem;
}

.thinc-poll__input {
    width: 100%;
    padding: 0.7rem 0.85rem;
    font-size: 1rem;
    border: 1px solid var(--thinc-poll-border);
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.thinc-poll__input:focus {
    outline: none;
    border-color: var(--thinc-poll-accent);
    box-shadow: 0 0 0 3px rgba(29, 121, 121, 0.15);
}

.thinc-poll__actions {
    margin-top: 0.25rem;
}

.thinc-poll__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--thinc-poll-accent);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
}

.thinc-poll__submit:hover {
    background: var(--thinc-poll-accent-hover);
}

.thinc-poll__submit:active {
    transform: translateY(1px);
}

.thinc-poll-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 0 1.35rem 0.75rem;
    font-size: 0.95rem;
}

.thinc-poll__form + .thinc-poll-message,
.thinc-poll__header + .thinc-poll-message {
    margin-top: 0.75rem;
}

.thinc-poll-success {
    background: #e8f7eb;
    color: #1f6f2f;
}

.thinc-poll-error {
    background: #fdecec;
    color: #9d1c1c;
}

/* Results block inside the card */
.thinc-poll-results {
    margin-top: 0;
    padding: 1.1rem 1.35rem 1.35rem;
    border-top: 1px solid #f0f2f5;
    background: #fafbfc;
}

.thinc-poll-results__heading {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--thinc-poll-muted);
}

.thinc-poll-result-item {
    margin-bottom: 12px;
}

.thinc-poll-result-head {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 5px;
}

.thinc-poll-result-track {
    width: 100%;
    height: 10px;
    background: #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
}

.thinc-poll-result-progress {
    height: 100%;
    background: var(--thinc-poll-accent);
}

.thinc-poll-total-votes {
    font-size: 13px;
    margin-top: 10px;
    color: var(--thinc-poll-muted);
}

.thinc-poll--notice .thinc-poll__header {
    border-bottom-color: #fde68a;
    background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
}

.thinc-poll-notice-text {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

/* Legacy class names (kept for compatibility) */
.poll-widget.thinc-poll {
    border: none;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

