/* General Form Layout */
.wone-form-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.wone-form-header h1 {
    color: #2a4365;
    font-size: 28px;
    margin-bottom: 10px;
}

.wone-form-header p {
    color: #4a5568;
    line-height: 1.6;
}

/* Multi-step form styles */
.wone-form-step {
    display: none;
}

.wone-form-navigation {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.wone-next-btn, .wone-prev-btn {
    padding: 12px 20px;
    font-size: 16px;
    border: none;

    cursor: pointer;
    transition: background-color 0.3s;
}

.wone-next-btn {
    background-color:#FF7A00 !important;
    color: #fff ! important;
    margin-left: auto;
}

.wone-prev-btn {
    background-color: #FF7A00 !important;
    color:white ! important;
}

.wone-next-btn:hover {
    background-color: #FF7A00 ! important;
    color:white !important;
}

.wone-prev-btn:hover {
    background-color: #FF7A00 ! important;
    color:white !important;
}


.wone-error {
    border-color: #e53e3e !important;
}

/* Category hierarchy styles */
.wone-main-category {
    display: block;
    font-weight: bold;
    padding: 2px 15px;
    margin: 5px 0;
    background-color: #f8f9fa;
    border-left: 4px solid #2a4365;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wone-main-category:hover {
    background-color: #e9ecef;
}

.wone-subcategories-container {
    margin-left: 30px;
    padding: 5px 0;
    border-left: 2px solid #dee2e6;
}

.wone-subcategory {
    display: block;
    padding: 8px 15px 0px 25px;
    margin: -8px 0;
    position: relative;
    font-weight: 500;
}

.wone-subcategory:before {
    /* content: "•"; */
    position: absolute;
    left: 12px;
    color: #2a4365;
}

.wone-nested-category {
    font-weight: bold;
    color: #2a4365;
}

.wone-subsubcategories-container {
    margin-left: 30px;
    padding: 5px 0;
    border-left: 2px solid #dee2e6;
}

.wone-subsubcategory {
    display: block;
    padding: 8px 15px 8px 35px;
    margin: -8px 0;
    position: relative;
    color: #4a5568;
}

.wone-subsubcategory:before {
    /* content: "›"; */
    position: absolute;
    left: 22px;
    color: #4a5568;
}

/* Checkbox styling */
.wone-main-category input[type="checkbox"],
.wone-subcategory input[type="checkbox"],
.wone-subsubcategory input[type="checkbox"] {
    margin-right: 8px;
}

/* Review section styles */
.wone-review-section {
    background: #f9f9f9;
    padding: 20px;
  
    margin-bottom: 20px;
}

.wone-review-section h3 {
    color: #2a4365;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}

.wone-review-section p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.wone-review-section ul {
    margin-left: 20px;
}

/* Checkbox styles */
.wone-checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
}

.wone-checkbox-label input {
    margin-right: 10px;
}

.wone-note {
    font-style: italic;
    color: #4a5568;
    margin-top: 20px;
    padding: 10px;
    background-color: #f0f7ff;
    border-left: 3px solid #4299e1;
}

/* General form styles */
#wone-nomination-form {
padding-bottom:130px;
padding-top:100px;
}

#wone-nomination-form h2 {
    font-size: 22px;
    margin-bottom: 15px;
    border-bottom: 2px solid #2a4365;
    padding-bottom: 5px;
    color: #2a4365;
}

.wone-form-section {
    margin-bottom: 30px;
}

.wone-form-control {
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid #ccc;
   
    box-sizing: border-box;
    appearance: none;
    background-color: #fff;
    padding: 10px;
    margin-bottom: 15px;
}

.wone-form-control option {
    white-space: normal !important;
}

.wone-form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.wone-form-col {
    flex: 1 1 100%;
}

@media (min-width: 600px) {
    .wone-form-col {
        flex: 1 1 45%;
    }
}

.wone-submit-btn {
    background-color: #2a4365;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
}

.wone-submit-btn:hover {
    background-color: #1e365d;
}

.wone-message {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 15px;
    display: none;
   
}

.wone-message.success {
    background-color: #d1f7d6;
    color: #2d7a33;
    border: 1px solid #98e49d;
}

.wone-message.error {
    background-color: #ffd4d4;
    color: #cc0000;
    border: 1px solid #f5aaaa;
}

input[type="file"] {
    padding: 10px;
    background-color: #fafafa;
}

select.wone-form-control {
    min-width: 100%;
    overflow: visible;
    text-overflow: ellipsis;
}

/* Rich editor styles */
.wone-rich-editor {
    border: 1px solid #ddd;
   
    padding: 10px;
    min-height: 150px;
}

/* Small text for labels */
small {
    font-size: 13px;
    color: #666;
    display: block;
    margin-top: 3px;
    font-weight: normal;
}

@media (max-width: 768px) {

    
    .wone-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .wone-form-col {
        flex: 1 1 100%;
    }
    
    .wone-submit-btn {
        width: 100%;
    }
}

@media (max-width: 500px) {

    
    #wone-nomination-form h2 {
        font-size: 20px;
    }
}
.wone-login-prompt {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background: #f9f9f9;
    border: 1px solid #ddd;
   
}
.wone-auth-links {
    margin-top: 15px;
}
.wone-login-link, .wone-register-link {
    display: inline-block;
    padding: 8px 15px;
    background: #2a4365;
    color: white;
    text-decoration: none;
  
    margin: 0 5px;
}
.wone-login-link:hover, .wone-register-link:hover {
    background: #1e365d;
}
/* THANK YOU PAGE CONTAINER */
.genf-thank-you-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 25px;
  background: #ffffff;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
 
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}
.genf-image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}
.genf-gallery-item {
    position: relative;
    border: 1px solid #e0e0e0;
   
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.genf-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.genf-gallery-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.genf-gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.genf-view-full {
    display: block;
    padding: 10px;
    text-align: center;
    background: rgba(0,0,0,0.7);
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.genf-gallery-item:hover .genf-view-full {
    transform: translateY(0);
}
.genf-documents {
    list-style-type: none;
    padding-left: 0;
}
.genf-documents li {
    margin-bottom: 8px;
}
.genf-documents a {
    text-decoration: none;
    color: #0066cc;
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #ddd;
   
}
.genf-documents a:hover {
    background-color: #f5f5f5;
}
/* HEADERS */
.genf-thank-you-container h2 {
  font-size: 28px;
  color: #1a237e;
  margin-bottom: 10px;
}
.genf-thank-you-container h3 {
  font-size: 22px;
  margin-top: 30px;
  color: #0d47a1;
}
.genf-thank-you-container h4 {
  font-size: 18px;
  margin-top: 20px;
  color: #004d40;
}
/* SUCCESS MESSAGE */
.genf-success-message {
  background: #e8f5e9;
  border-left: 6px solid #2e7d32;
  padding: 15px;
  margin-bottom: 25px;
 
}
/* DETAIL SECTIONS */
.genf-submission-details,
.genf-next-steps {
  margin-top: 20px;
}
.genf-detail-section {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-left: 4px solid #ccc;
 
}
.genf-detail-section p {
  margin: 5px 0;
  font-size: 15px;
}
/* BIO & ADDITIONAL INFO */
.genf-bio,
.genf-more-details {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 12px;

  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
}
/* CATEGORY LIST */
.genf-categories {
  list-style-type: disc;
  padding-left: 20px;
}
.genf-categories li {
  font-size: 15px;
  margin-bottom: 4px;
}
/* IMAGE GALLERY */
.genf-image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.genf-image-item {
  flex: 1 1 150px;
  max-width: 150px;
  border: 1px solid #ccc;

  overflow: hidden;
}
.genf-image-item img {
  width: 100%;
  display: block;
}
/* DOCUMENT LIST */
.genf-documents {
  list-style: none;
  padding: 0;
}
.genf-documents li a {
  color: #0d47a1;
  text-decoration: underline;
  font-weight: 500;
}
/* NEXT STEPS */
.genf-next-steps p {
  margin-bottom: 10px;
  font-size: 15px;
}
/* ERROR BOX */
.genf-error {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #fff3f3;
  border-left: 5px solid #d32f2f;
 
  color: #b71c1c;
}
.wone-login-prompt {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background: #f9f9f9;
    border: 1px solid #ddd;
   
  }
  .wone-auth-links {
    margin-top: 15px;
  }
  .wone-login-link, .wone-register-link {
    display: inline-block;
    padding: 8px 15px;
    background: #0073aa;
    color: white;
    text-decoration: none;
   
    margin: 0 5px;
  }
  .wone-login-link:hover, .wone-register-link:hover {
    background: #005d8c;
  }
  .auth-forms {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
  }
  .form-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
  }
  .form-tabs a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
  }
  .form-tabs a.active {
    color: #0073aa;
    border-bottom: 2px solid #0073aa;
  }
  .auth-form {
    margin-top: 20px;
  }
  .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
  }
  .form-group {
    flex: 1;
    margin-bottom: 15px;
  }
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  .form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
   
  }
  .submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: white;
    border: none;
   
    cursor: pointer;
    font-size: 16px;
  }
  .submit-btn:hover {
    background-color: #005d8c;
  }
  .error-message {
    color: red;
    margin-bottom: 15px;
  }
  .success-message {
    color: green;
    font-weight: bold;
    text-align: center;
    padding: 20px;
  }
/* RESPONSIVE */
@media screen and (max-width: 768px) {
    .genf-thank-you-container {
    padding: 20px;
    }
    .genf-image-gallery {
    flex-direction: column;
    align-items: center;
    }
    .genf-image-item {
    max-width: 90%;
    }
}
.wone-button {
    background-color: #ff7700 !important;
    color: #ffffff !important;
    border: none;
    padding:7px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius:0px !important;
}

.wone-button:hover,
.wone-button:focus,
.wone-button:active,
.wone-button.is-active {
    background-color: #d86500 !important;
    color: #ffffff !important;
}

#nominees-pagination{
    padding-bottom:100px;
}

/* Main Profile Container  nominee profile */
    /* Global Styles */
    .wone-profile-container {
        padding-bottom: 150px;
        padding-top: 32px;
        margin-top: 80px !important;
        max-width: 1200px;
        margin: 0 auto;
        font-family: 'Arial', sans-serif;
        color: #333;
        box-sizing: border-box;
    }
    
    .wone-profile-wrapper {
        padding-bottom: 120px;
    }
    
    * {
        box-sizing: border-box;
    }
    
    /* Profile Header */
    .wone-profile-header {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 40px;
        align-items: flex-start;
        width: 100%;
    }
    
    /* Full Width Gallery */
    .wone-full-width-gallery {
        width: 100%;
        margin-bottom: 30px;
        position: relative;
    }
    
    .wone-gallery-main {
        width: 100%;
        display: flex;
        overflow: hidden;
    }
    
    .wone-gallery-image-container {
        width: 100%;
        height: 400px;
        overflow: hidden;
        position: relative;
    }
    
    .wone-gallery-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    .wone-gallery-image-container:hover img {
        transform: scale(1.03);
    }
    
    /* Profile Image */
    .wone-profile-image {
        position: relative;
        width: 250px;
        height: 250px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        flex-shrink: 0;
        cursor: pointer;
    }
    
    .wone-profile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .wone-profile-image:hover img {
        transform: scale(1.03);
    }
    
    /* Profile Placeholder for no image */
    .wone-profile-placeholder {
        width: 100%;
        height: 400px;
        background-color: #1a3851;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 72px;
        font-weight: bold;
    }
    
    /* Image Overlay Buttons */
    .wone-image-overlay-buttons {
        position: absolute;
        top: 15px;
        right: 15px;
        display: flex;
        justify-content: right;
        gap: 15px;
        z-index: 10;
    }
    
    .wone-favorite-btn, .wone-profile-share-icon {
        color: white;
        padding: 11px 12px;
    }
    
    .wone-btn-text {
        margin-left: 3px;
        font-size: 12px;
    }
    
    /* Share Icon */
    .wone-profile-share-icon {
        color: #d86500;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .wone-profile-share-icon i {
        color: #1a3851;
        font-size: 18px;
    }
    
    /* Profile Info */
    .wone-profile-info {
        width: 100%;
    }
    
    .wone-profile-info h1 {
        font-size: 28px;
        margin: 0 0 10px;
        color: #1a3851;
        line-height: 1.2;
    }
    
    .wone-profile-position,
    .wone-profile-company {
        margin: 5px 0;
        color: #666;
        font-size: 16px;
        line-height: 1.4;
    }
    
    /* Award Info Container */
    .wone-award-info-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin: 20px 0;
    }
    
    .wone-award-info-box {
        flex: 1;
        min-width: 200px;
        background: #f5f5f5;
        padding: 15px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }
    
    .wone-award-info-icon {
        font-size: 24px;
        color: #e67e22;
        margin-top: -4px;
    }
    
    .wone-award-info-content {
        flex: 1;
    }
    
    .wone-award-info-content h4 {
        margin: 0 0 5px;
        font-size: 16px;
        color: #e67e22;
        font-weight: 600;
    }
    
    .wone-award-info-content p {
        margin: 0;
        font-size: 14px;
        color: #666;
        line-height: 1.4;
    }
    
    .wone-categories-grid {
        margin-top: 5px;
    }
    
    /* For the category list styling */
    .simple-category-list {
        line-height: 1.6;
    }
    
    .main-category {
        color: #333;
    }
    
    .subcategory {
        margin-left: 15px;
        color: #555;
    }
    
    /* Rating Stars */
    .wone-average-rating {
        display: flex;
        align-items: center;
        margin: 15px 0;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .wone-rating-stars {
        margin-right: 10px;
    }
    
    .wone-rating-stars .star {
        color: #ddd;
        font-size: 18px;
    }
    
    .wone-rating-stars .star.filled {
        color: #f1c40f;
    }
    
    .wone-rating-text {
        font-size: 14px;
    }
    
    /* Profile Content Layout */
    .wone-profile-content {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .wone-profile-main {
        flex: 1;
        min-width: 300px;
    }
    
    .wone-profile-sidebar {
        width: 300px;
    }
    
    /* Profile Sections */
    .wone-profile-section {
        margin-bottom: 30px;
    }
    
    .wone-profile-section h2 {
        font-size: 20px;
        color: #1a3851;
        border-bottom: 2px solid #eee;
        padding-bottom: 8px;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .wone-profile-bio {
        line-height: 1.6;
        font-size: 15px;
    }
    
    /* Categories Grid */
    .wone-categories-grid {
        margin-top: 15px;
    }
    
    .wone-categories-grid .wone-category {
        background: #f5f5f5;
        padding: 15px;
        font-size: 14px;
    }
    
    /* Contact Card */
    .wone-contact-card {
        background: #f9f9f9;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .wone-contact-card h3 {
        font-size: 18px;
        margin-top: 0;
        color: #ff7700;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
    
    .wone-contact-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .wone-contact-card li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        font-size: 14px;
    }
    
    .wone-contact-card i {
        margin-right: 10px;
        width: 20px;
        color: #3498db;
    }
    
    /* Documents Card */
    .wone-documents-card {
        background: #f9f9f9;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .wone-documents-card h3 {
        font-size: 18px;
        margin-top: 0;
        color: #ff7700;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
    
    .wone-documents {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .wone-documents li {
        margin-bottom: 10px;
    }
    
    .wone-document-link {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #ff7700;
        transition: color 0.3s;
        font-size: 14px;
    }
    
    .wone-document-link:hover {
        color: #ff7700;
    }
    
    .wone-document-link i {
        margin-right: 10px;
        color: #ff7700;
    }
    
    /* Reviews Card */
    .wone-reviews-card {
        background: #f9f9f9;
        padding: 10px;
    }
    
    .wone-reviews-card h3 {
        font-size: 18px;
        margin-top: 0;
        color: #ff7700;
        padding-bottom: 10px;
    }
    
    .wone-reviews-summary {
        margin-bottom: 20px;
    }
    
    .wone-category-ratings {
        margin-top: 15px;
    }
    
    .wone-category-rating {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
        font-size: 14px;
    }
    
    .wone-category-name {
        color: #666;
    }
    
    .wone-category-value {
        font-weight: bold;
    }
    
    .wone-reviews-list {
        margin-top: 20px;
    }
    
    .wone-review {
        padding: 15px;
        background: white;
        margin-bottom: 15px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .wone-review-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 5px;
        flex-wrap: wrap;
    }
    
    .wone-reviewer {
        display: flex;
        align-items: center;
        font-size: 15px;
    }
    
    .wone-reviewer-badge {
        font-size: 11px;
        background: #3498db;
        color: white;
        padding: 2px 6px;
        margin-left: 8px;
    }
    
    .wone-review-date {
        font-size: 12px;
        color: #666;
        margin-bottom: 10px;
    }
    
    .wone-review-content {
        line-height: 1.5;
        font-size: 14px;
    }
    
    .wone-no-reviews {
        color: #666;
        font-style: italic;
        font-size: 14px;
    }
    
    .wone-load-more-reviews {
        text-align: center;
        margin-top: 20px;
    }
    
    .wone-load-more-reviews button {
        background: #1a3851;
        color: white;
        border: none;
        padding: 8px 15px;
        cursor: pointer;
        transition: background 0.3s;
        font-size: 14px;
    }
    
    .wone-load-more-reviews button:hover {
        background: #2c3e50;
    }
    
    /* Review Form */
    .wone-show-review-form {
        background: #e67e22;
        color: white;
        border: none;
        padding: 10px 15px;
        transition: background 0.3s;
        width: 100%;
        margin-top: 15px;
        font-size: 14px;
    }
    
    .wone-add-review {
        margin-top: 20px;
        padding: 20px;
        background: white;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .wone-form-group {
        margin-bottom: 15px;
    }
    
    .wone-form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        font-size: 14px;
    }
    
    .wone-form-group input[type="text"],
    .wone-form-group textarea {
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        font-size: 14px;
    }
    
    .wone-form-group textarea {
        min-height: 100px;
    }
    
    .wone-rating-categories {
        margin: 20px 0;
    }
    
    .wone-rating-category {
        margin-bottom: 15px;
    }
    
    .wone-rating-category label {
        font-size: 14px;
        margin-bottom: 5px;
        display: block;
    }
    
    .wone-rating-input {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
    
    .wone-rating-input input[type="radio"] {
        display: none;
    }
    
    .wone-rating-input label {
        color: #ddd;
        font-size: 20px;
        cursor: pointer;
        padding: 0 3px;
    }
    
    .wone-rating-input input[type="radio"]:checked ~ label,
    .wone-rating-input label:hover,
    .wone-rating-input label:hover ~ label {
        color: #f1c40f;
    }
    
    .wone-submit-review {
        background: #e67e22;
        color: white;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        transition: background 0.3s;
        font-size: 14px;
    }
    
    .wone-cancel-edit {
        background: #e74c3c;
        color: white;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        transition: background 0.3s;
        margin-left: 10px;
        font-size: 14px;
    }
    
    .wone-cancel-edit:hover {
        background: #c0392b;
    }
    
    /* Comment Form Styles */
    .wone-show-comment-form {
        background-color: #ff7700;
        color: white;
        border: none;
        padding: 12px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin: 15px 0;
        display: inline-block;
    }
    
    .wone-show-comment-form:hover {
        background-color: #e56a00;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .wone-add-comment {
        background: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
        margin: 20px 0;
        border: 1px solid #eee;
    }
    
    .wone-add-comment h4 {
        margin-top: 0;
        color: #333;
        font-size: 20px;
    }
    
    .wone-comment-notice {
        color: #666;
        font-style: italic;
        padding: 15px;
        background: #f5f5f5;
        border-radius: 4px;
    }
    
    /* Slider Modal */
    .wone-slider-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.9);
        z-index: 1000;
        align-items: center;
        justify-content: center;
    }
    
    .wone-slider-modal-content {
        position: relative;
        max-width: 90%;
        max-height: 90%;
    }
    
    .wone-slider-modal-close {
        position: absolute;
        top: -40px;
        right: 0;
        color: white;
        font-size: 30px;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .wone-slider-container {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .wone-slide {
        display: none;
        text-align: center;
    }
    
    .wone-slide.active {
        display: block;
    }
    
    .wone-slide img {
        max-width: 100%;
        max-height: 80vh;
        object-fit: contain;
    }
    
    .wone-slider-prev,
    .wone-slider-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        font-size: 30px;
        background: rgba(0,0,0,0.5);
        border: none;
        padding: 15px;
        cursor: pointer;
        z-index: 10;
    }
    
    .wone-slider-prev {
        left: 10px;
    }
    
    .wone-slider-next {
        right: 10px;
    }
    
    /* Share Modal */
    .wone-share-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        z-index: 1000;
        align-items: center;
        justify-content: center;
    }
    
    .wone-share-modal-content {
        background: white;
        padding: 30px;
        max-width: 500px;
        width: 90%;
        position: relative;
    }
    
    .wone-share-modal-close {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }
    
    .wone-share-options {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 20px;
    }
    
    .wone-share-option {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #333;
        padding: 10px 15px;
        transition: all 0.3s ease;
        border: 1px solid #ddd;
        font-size: 14px;
    }
    
    .wone-share-option:hover {
        background: #f5f5f5;
        transform: translateY(-3px);
    }
    
    .wone-share-option i {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .wone-profile-container {
            padding: 20px;
            margin-top: 60px !important;
        }
        
        .wone-gallery-image-container {
            height: 350px;
        }
    }
    
    @media (max-width: 992px) {
        .wone-profile-content {
            flex-direction: column;
        }
        
        .wone-profile-sidebar {
            width: 100%;
        }
        
        .wone-gallery-image-container {
            height: 300px;
        }
        
        .wone-award-info-box {
            min-width: calc(50% - 20px);
        }
        
        .wone-profile-header {
            gap: 20px;
        }
    }
    
    @media (max-width: 768px) {
        .wone-profile-container {
            padding-left: 20px;
            padding-bottom:100px;
            margin-top: 50px !important;
        }
        
        .wone-gallery-image-container {
            height: 250px;
        }
        
        .wone-profile-image {
            width: 200px;
            height: 200px;
        }
        
        .wone-award-info-container {
            gap: 15px;
        }
        
        .wone-award-info-box {
            min-width: 100%;
        }
        
        .wone-profile-info h1 {
            font-size: 24px;
        }
        
        .wone-profile-position,
        .wone-profile-company {
            font-size: 14px;
        }
        
        .wone-image-overlay-buttons {
            bottom: 15px;
            gap: 10px;
        }
        
        .wone-favorite-btn,
        .wone-profile-share-icon {
            padding: 6px 10px;
            font-size: 12px;
            min-height: 32px;
        }
        
        .wone-favorite-btn i,
        .wone-profile-share-icon i {
            font-size: 13px;
        }
        
        .wone-rating-input label {
            font-size: 18px;
        }
    }
    
    @media (max-width: 576px) {
        .wone-profile-container {
           padding-left: 20px;
            padding-bottom:100px;
            margin-top: 40px !important;
        }
        
        .wone-gallery-image-container {
            height: 200px;
        }
        
        .wone-profile-image {
            width: 150px;
            height: 150px;
        }
        
        .wone-profile-info h1 {
            font-size: 22px;
        }
        
        .wone-profile-section h2 {
            font-size: 18px;
        }
        
        .wone-average-rating {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .wone-review-header {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .wone-image-overlay-buttons {
            gap: 8px;
        }
        
        .wone-favorite-btn,
        .wone-profile-share-icon {
            padding: 6px;
            width: 32px;
            height: 32px;
            justify-content: right;
        }
        
        .wone-btn-text {
            display: none;
        }
        
        .wone-share-options {
            justify-content: center;
        }
        
        .wone-share-option {
            min-width: 80px;
        }
    }
    
    @media (max-width: 400px) {
        .wone-gallery-image-container {
            height: 180px;
        }
        
        .wone-profile-image {
            width: 100%;
            height: 200px;
        }
        
        .wone-profile-info h1 {
            font-size: 20px;
        }
        
        .wone-award-info-icon {
            font-size: 20px;
        }
        
        .wone-award-info-content h4 {
            font-size: 14px;
        }
        
        .wone-award-info-content p {
            font-size: 13px;
        }
        
        .wone-rating-input label {
            font-size: 16px;
        }
        
        .wone-show-comment-form {
            padding: 10px 20px;
            font-size: 14px;
        }
    }



/* Awards Hero Component Styles */
.wone-awards-hero {
    background: linear-gradient(135deg, #E29F64 0%, #e3dab2 100%);
    color: #fff;
    padding: 25px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
   
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin: 20px auto;
    max-width: 1400px;
}
/* Content Container */
.wone-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}
/* Header Content */
.wone-header-content {
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}
/* Text Content */
.wone-text-content {
    flex: 1;
    text-align: left;
}
/* Button Container */
.wone-button-container {
    margin-left: 30px;
    display: flex;
    align-items: center;
}
/* Typography */
.wone-hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #fff;
}
.wone-hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.5;
    opacity: 0.95;
    font-weight: 400;
    text-align: left;
}
/* Nominate Button */
.wone-nominate-btn {
    margin-left: -30px;
    display: inline-block;
    background: #FF7700;
    color: #1a202c !important;
    font-weight: 700;
    font-size: 15px;
    padding: 9px 10px;
  
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 119, 0, 0.4);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.wone-nominate-btn:hover {
    background: #E56D00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 119, 0, 0.5);
}
/* Tabs Navigation */
.wone-tabs {
    display: inline-flex;
    background: rgba(255,255,255,0.2);
   
    padding: 5px;
    margin-bottom: 30px;
}
.wone-tab-btn {
    background: transparent;
    color: white;
    border: none;
    padding: 12px 35px;
   
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.wone-tab-btn.active {
    background: #FF7700;
    color: #1a202c;
}
.wone-tab-btn:not(.active):hover {
    background: rgba(255,255,255,0.3);
}
/* Category Selector */
.wone-category-selector {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
   
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}
.wone-category-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #FF7700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.wone-category-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.wone-search-btn {
    background: #FF7700;
    color: #1a202c;
    font-weight: 700;
    padding: 14px 40px;
   
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 119, 0, 0.3);
}
.wone-search-btn:hover {
    background: #E56D00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 119, 0, 0.4);
}
/* Responsive Adjustments */
@media (max-width: 992px) {
    .wone-hero-title {
        font-size: 38px;
    }
    .wone-hero-subtitle {
        font-size: 18px;
    }
    .wone-category-selector {
        padding: 30px;
    }
}
@media (max-width: 768px) {
    .wone-awards-hero {
        padding: 40px 15px;
      
    }
    .wone-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .wone-text-content {
        text-align: center;
        margin-bottom: 20px;
    }
    .wone-button-container {
        margin-left: 0;
        margin-bottom: 20px;
    }
    .wone-hero-title {
        font-size: 32px;
    }
    .wone-hero-subtitle {
        text-align: center;
    }
    .wone-tabs {
        display: flex;
        flex-direction: column;
        background: transparent;
        gap: 10px;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .wone-tab-btn {
        width: 100%;
        background: rgba(255,255,255,0.2);
    }
    .wone-tab-btn.active {
        background: #FF7700;
    }
    .wone-category-form {
        flex-direction: column;
    }
    .wone-category-selector {
        padding: 25px 20px;
    }
    .wone-category-select {
        width: 100%;
        max-width: 100%;
    }
    .wone-search-btn {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .wone-hero-title {
        font-size: 28px;
    }
    .wone-nominate-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}


/* Main Winners Page */
.wone-winners-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.wone-winners-header {
    text-align: center;
    margin-bottom: 40px;
}

.wone-winners-header h1 {
    font-size: 36px;
    color: #222;
    margin-bottom: 10px;
}

.wone-winners-header h2 {
    font-size: 24px;
    color: #555;
    font-weight: normal;
}

/* Filters */
.wone-winners-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.wone-filter-dropdown {
    min-width: 250px;
}

.wone-filter-dropdown label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #444;
}

.wone-filter-dropdown select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
 
    background-color: white;
    font-size: 14px;
}

/* Winners Grid */
.wone-winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.wone-winner-card {
    background: white;
   
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.wone-winner-card:hover {
    transform: translateY(-5px);
}

.wone-winner-image {
    height: 200px;
    overflow: hidden;
}

.wone-winner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wone-winner-card:hover .wone-winner-image img {
    transform: scale(1.05);
}

.wone-winner-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
}

.wone-winner-content {
    padding: 20px;
}

.wone-winner-content h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #222;
}

.wone-winner-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.wone-winner-category {
    color: #2271b1;
    font-weight: 500;
}

.wone-winner-year {
    color: #666;
}

.wone-winner-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.wone-read-more {
    display: inline-block;
    color: #2271b1;
    text-decoration: none;
    font-weight: 500;
}

.wone-read-more:hover {
    text-decoration: underline;
}
.wone-winner-slider {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.wone-winner-slider img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.wone-winner-slider img.active {
    opacity: 1;
    position: relative;
}
/* Responsive */
@media (max-width: 768px) {
    .wone-winners-grid {
        grid-template-columns: 1fr;
    }
    
    .wone-winners-filters {
        flex-direction: column;
    }
    
    .wone-filter-dropdown {
        width: 100%;
    }
}

/*winner page single page */
.wone-winner-single {
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header Section */
.wone-winner-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
}

.wone-winner-header h1 {
    font-size: 32px;
    margin: 0 0 10px;
    color: #222;
    font-weight: 600;
}

.wone-winner-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    color: #666;
    font-size: 16px;
}

.wone-winner-meta span {
    display: flex;
    align-items: center;
}

/* Image Gallery */
.wone-winner-gallery {
    margin: 30px 0;
    text-align: center;
}

.wone-profile-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.wone-profile-image-container-1 {
    max-width: 100%;
    height: auto;
    max-height: 400px;
   
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.wone-gallery-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,102,204,0.9);
    color: white;
    padding: 8px 15px;
   
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.wone-gallery-toggle:hover {
    background: rgba(0,85,170,0.9);
    transform: translateY(-2px);
}

/* Content Sections */
.wone-winner-content {
    margin: 40px 0;
}

.wone-winner-section {
    margin-bottom: 30px;
}

.wone-winner-section h2 {
    font-size: 24px;
    margin: 0 0 15px;
    color: #222;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.wone-section-content p {
    margin: 0 0 15px;
}

/* Award Badge */
.wone-award-badge {
    background: #f8f8f8;
    padding: 15px;
   
    margin: 20px 0;
    text-align: center;
    border-left: 4px solid #0066cc;
}

.wone-award-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.wone-award-year {
    color: #0066cc;
    font-weight: 700;
}

/* Comments Section */
.wone-comments-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
}

.wone-comments-section h2 {
    font-size: 24px;
    margin: 0 0 20px;
    color: #222;
}

.wone-comment {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.wone-comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.wone-comment-author {
    font-weight: 600;
    color: #333;
}

.wone-comment-date {
    color: #666;
    font-size: 14px;
}

.wone-no-comments {
    color: #666;
    font-style: italic;
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    
}

/* Comment Form */
.wone-comment-form {
    margin-top: 30px;
}

.wone-form-group {
    margin-bottom: 20px;
}

.wone-form-group input,
.wone-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
  
    font-family: inherit;
    font-size: 16px;
    transition: border 0.3s;
}

.wone-form-group input:focus,
.wone-form-group textarea:focus {
    border-color: #0066cc;
    outline: none;
}

.wone-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.wone-submit-button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 12px 30px;
   
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.wone-submit-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Lightbox Styles */
.wone-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.wone-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
}

.wone-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.wone-lightbox-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.wone-lightbox-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wone-lightbox-slide.active {
    opacity: 1;
}

.wone-lightbox-slide img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
}

.wone-lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
}

.wone-lightbox-prev,
.wone-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 60px;
    cursor: pointer;
    user-select: none;
    padding: 20px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.wone-lightbox-prev {
    left: -80px;
}

.wone-lightbox-next {
    right: -80px;
}

.wone-lightbox-prev:hover,
.wone-lightbox-next:hover {
    opacity: 1;
}
.wone-winner-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.wone-winner-main-content {
    flex: 1;
    max-width: calc(100% - 340px);
}

.wone-related-winners {
    width: 300px;
    background: #f9f9f9;
    padding: 20px;
   
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.wone-related-winners h3 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    color: #333;
}

.wone-related-winners-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wone-related-winner {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.wone-related-winner:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wone-related-winner-image {
    width: 50px;
    height: 50px;
   
    overflow: hidden;
    flex-shrink: 0;
}

.wone-related-winner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wone-related-winner-image.placeholder {
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wone-related-winner-image.placeholder .dashicons {
    font-size: 24px;
    color: #999;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wone-related-winner-info {
    flex: 1;
    min-width: 0;
}

.wone-related-winner-info h4 {
    margin: 0 0 5px 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wone-read-more {
    display: inline-block;
    font-size: 13px;
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

.wone-read-more:hover {
    text-decoration: underline;
    color: #00a0d2;
}

@media (max-width: 768px) {
    .wone-winner-container {
        flex-direction: column;
    }
    
    .wone-winner-main-content {
        max-width: 100%;
    }
    
    .wone-related-winners {
        width: 100%;
        margin-top: 30px;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .wone-winner-single {
        padding: 15px;
    }
    
    .wone-winner-header h1 {
        font-size: 28px;
    }
    
    .wone-winner-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .wone-profile-image-container-1 {
        max-height: 300px;
    }
    
    .wone-gallery-toggle {
        bottom: 10px;
        right: 10px;
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .wone-lightbox-slider {
        height: 60vh;
    }
    
    .wone-lightbox-prev {
        left: 0;
    }
    
    .wone-lightbox-next {
        right: 0;
    }
    
    .wone-lightbox-close {
        top: -40px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .wone-winner-header h1 {
        font-size: 24px;
    }
    
    .wone-winner-section h2 {
        font-size: 20px;
    }
    
    .wone-lightbox-slider {
        height: 50vh;
    }
}

/* vote & Review */
 @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');

/* Vote & Review Form */
.wone-vote-review-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 50px;
    font-family: 'Roboto', Arial, sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

.wone-vote-review-form h1 {
    color: #1a3851;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 32px;
}

.wone-vote-review-form h2 {
    color: #1a3851;
    border-bottom: 2px solid #ff7700;
    padding-bottom: 12px;
    margin: 40px 0 25px;
    font-weight: 500;
    font-size: 24px;
}

.wone-vote-review-form > p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #1a3851;
    font-size: 16px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ddd;
    background: #fff;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Roboto', Arial, sans-serif;
    border-radius: 0 !important;
    transition: all 0.3s ease;
    color: #333;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff7700;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 45px;
}

.rating-group {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid #ff7700;
}

.rating-group label {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    color: #1a3851;
    font-size: 16px;
}

.star-rating {
    display: flex;
   
    justify-content: flex-start;
    gap: 5px;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    font-size: 36px;
    color: #ddd;
    cursor: pointer;
    padding: 0 3px;
    transition: all 0.2s ease;
    margin: 0;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type="radio"]:checked ~ label {
    color: #ff7700;
    transform: scale(1.1);
}

.form-submit {
    text-align: center;
    margin-top: 50px;
}

.form-submit input[type="submit"] {
    background-color: #ff7700;
    color: white;
    border: none;
    padding: 7px 22px;
    border-radius: 0 !important;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Roboto', Arial, sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 250px;
}

.form-submit input[type="submit"]:hover,
.form-submit input[type="submit"]:focus {
    background-color: #e56a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.3);
    outline: none;
}

/* Messages */
.success {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #28a745;
    font-weight: 500;
    text-align: center;
}

.error {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #dc3545;
    font-weight: 500;
    text-align: center;
}

.btn-outline-secondary {
    border-radius: 0 !important;
}

/* Required field indicator */
.form-group label[required]::after {
    content: " *";
    color: #ff7700;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .wone-vote-review-form {
        padding: 90px 20px 40px;
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .wone-vote-review-form {
        padding: 80px 20px 40px;
        max-width: 800px;
    }
    
    .wone-vote-review-form h1 {
        font-size: 28px;
    }
    
    .wone-vote-review-form h2 {
        font-size: 22px;
    }
    
    .star-rating label {
        font-size: 32px;
    }
    
    .form-submit input[type="submit"] {
        padding: 16px 35px;
        font-size: 17px;
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .wone-vote-review-form {
        padding: 70px 15px 30px;
    }
    
    .wone-vote-review-form h1 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .wone-vote-review-form h2 {
        font-size: 20px;
        margin: 35px 0 20px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .rating-group {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .star-rating label {
        font-size: 28px;
    }
    
    .form-submit {
        margin-top: 40px;
        padding-top: 25px;
    }
    
    .form-submit input[type="submit"] {
        padding: 15px 30px;
        font-size: 16px;
        min-width: 200px;
    }
}

@media (max-width: 576px) {
    .wone-vote-review-form {
        padding: 60px 12px 25px;
    }
    
    .wone-vote-review-form h1 {
        font-size: 24px;
    }
    
    .wone-vote-review-form h2 {
        font-size: 19px;
        margin: 30px 0 18px;
    }
    
    .wone-vote-review-form > p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group select,
    .form-group textarea {
        padding: 11px 13px;
        font-size: 14px;
        border-width: 1px;
    }
    
    .rating-group {
        padding: 12px;
        margin-bottom: 20px;
        border-left-width: 3px;
    }
    
    .rating-group label {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .star-rating {
        gap: 3px;
    }
    
    .star-rating label {
        font-size: 24px;
        padding: 0 2px;
    }
    
    .form-submit {
        margin-top: 35px;
        padding-top: 20px;
    }
    
    .form-submit input[type="submit"] {
        padding: 14px 25px;
        font-size: 15px;
        min-width: 180px;
        width: 100%;
        max-width: 280px;
    }
    
    .success,
    .error {
        padding: 15px;
        margin: 20px 0;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .wone-vote-review-form {
        padding: 50px 10px 20px;
    }
    
    .wone-vote-review-form h1 {
        font-size: 22px;
    }
    
    .wone-vote-review-form h2 {
        font-size: 18px;
    }
    
    .star-rating label {
        font-size: 22px;
    }
    
    .form-submit input[type="submit"] {
        padding: 13px 20px;
        font-size: 14px;
        min-width: 160px;
    }
}

/* Focus styles for accessibility */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.star-rating label:focus {
    outline: 2px solid #ff7700;
    outline-offset: 2px;
}

/* Loading state for submit button */
.form-submit input[type="submit"]:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Print styles */
@media print {
    .wone-vote-review-form {
        padding: 0;
        margin: 0;
    }
    
    .form-submit {
        display: none;
    }
}

.latest-winners-heading {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
    position: relative;
    padding-bottom: 0.5rem;
}
.latest-winners-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #ff7700;
}/* ====== WONE Dashboard Styling ====== */
.wone-dashboard {
    max-width: 1100px;
    margin: 30px auto;
    padding: 25px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.wone-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.wone-welcome {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

.wone-admin-btn {
    background: #2c7be5;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}
.wone-admin-btn:hover {
    background: #1a5fb4;
}

/* Dashboard Body Layout */
.wone-dashboard-body {
    display: flex;
    gap: 25px;
    justify-content: space-between;
    align-items: flex-start;
}

/* Actions Left - 30% */
.wone-actions-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    flex: 0 0 30%;
}

/* Profile Right - Full Width */
.wone-profile-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
}

/* Profile Details */
.wone-profile-details {
    display: grid;
    gap: 12px;
}

.wone-profile-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: #fff;
}

.wone-label {
    font-weight: 600;
    color: #2c3e50;
}

.wone-value {
    color: #555;
}

/* Buttons - 70% width */
.wone-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wone-btn {
    display: block;
    width: 90%;
    padding: 13px;
    text-align: left;
    margin-left: 10px;
    text-decoration: none !important; /* ✅ underline remove */
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #fff !important; /* ✅ text white ho jaye */
}
.wone-btn-primary {
    background: #e67e22;
    color: #fff;
}
.wone-btn-primary:hover {
    background: #ca6f1e;
}
/* .wone-btn-logout {
    background: #e67e22; 
    color: #fff !important;
    text-decoration: none !important;
}
.wone-btn-logout:hover {
    background: #ca6f1e;;  
    color: #fff !important;
} */
.wone-btn-orange {
    background: #e67e22;
    color: #fff;
}
.wone-btn-orange:hover {
    background: #ca6f1e;
}

/* Responsive */
@media (max-width: 900px) {
    .wone-dashboard-body {
        flex-direction: column;
    }
    .wone-actions-card, .wone-profile-card {
        flex: 1;
    }
    .wone-btn {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }
}

/* ===============================
   WONE Blog Form & Table Styling
   =============================== */

/* Form container */
.wone-blog-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 1200px;
    margin-bottom: 30px;
    font-family: Arial, sans-serif;
}

/* Labels */
.wone-label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
    margin-top: 12px;
    color: #333;
}

/* Input fields */
.wone-input, 
.wone-select, 
.wone-textarea, 
.wone-file {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

/* Textarea specific */
.wone-textarea {
    resize: vertical;
}

/* Image preview */
.wone-image-field img {
    margin-top: 5px;
    border-radius: 4px;
    max-width: 150px;
    height: auto;
}

/* Buttons styling */
.wone-btn {
    display: inline-block;
    padding: 10px 18px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

/* Orange buttons */
.wone-btn-create,
.wone-btn-update {
    color:#ca6f1e!important;
}

.wone-btn-create:hover,
.wone-btn-update:hover {
    background-color: rgb(255, 140, 0)!important;
}

/* Cancel button */
.wone-btn-cancel {
    background-color: rgb(255, 140, 0);
    color:  rgb(255, 140, 0);
    margin-left: 10px;
}

.wone-btn-cancel:hover {
    background-color: rgb(255, 140, 0);
    color: #fff;
}

/* Table styling */
.wone-blog-form + table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
}

.wone-blog-form + table th,
.wone-blog-form + table td {
    border: 1px solid #ddd;
    padding: 8px 10px;
    text-align: left;
}

.wone-blog-form + table th {
    background-color: #f9f9f9;
    font-weight: bold;
}

/* Alternate row color */
.wone-blog-form + table tr:nth-child(even) {
    background-color: #f5f5f5;
}

/* Pagination styling */
.pagination {
    margin-top: 15px;
}

.pagination a, .pagination strong {
    display: inline-block;
    padding: 6px 12px;
    margin-right: 4px;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid #ddd;
    color: #333;
}

.pagination a:hover {
    background-color: orange;
    color: #fff;
    border-color: orange;
}

.pagination strong {
    background-color: orange;
    color: #fff;
    border-color: orange;
}

/* Success & Error notices */
.notice {
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-weight: bold;
}

.notice-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notice-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .wone-blog-form, .wone-blog-form + table {
        width: 100%;
        overflow-x: auto;
    }
}
/* Pagination Orange Style */
#wone-pagination {
    margin-top: 20px;
    text-align: center;
}
#wone-pagination a {
    display: inline-block;
    padding: 6px 14px;
    margin: 0 4px;
    background-color: #ff7f00; /* orange */
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
#wone-pagination a:hover {
    background-color: #e96d00; /* darker orange */
}
#wone-pagination a.active {
    background-color: #cc5a00; /* active */
    font-weight: bold;
    cursor: default;
}

