/* CSS Reset and Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif, serif;
    color: #121212;
    line-height: 1.5;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: normal;
}

svg {
    aspect-ratio: 12 / 3;
    min-width: 200px;
}

blockquote {
    position: relative;
    font-style: italic;
    float: left;
    color: var(--black-color);
    margin-left: 0;
    padding: 10px 15px;
    width: 100%;
    box-sizing: border-box;
    background: rgb(181 181 181 / 0.09);
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 30px;
}

blockquote:before {
    display: inline-block;
    font-family: 'Material Icons Round';
    font-size: 62px;
    position: absolute;
    font-style: normal;
    font-weight: 300;
}

.top {
    width: 100%;
    background-color: #000;
    padding-top: 30px;
}

.top-text {
    font-size: 16px;
    color: white;
    padding-bottom: 20px
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


/* Top Content Area - Sidebar after menu */

.top-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 30px 0;
}


/* Live Updates Section */

.live-updates {
    margin-bottom: 30px;
}

.live-updates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.live-updates-header h2 {
    font-size: 20px;
}

.live-updates-container {
    display: grid;
    grid-template-columns: 5fr 9fr;
    gap: 20px;
}

.live-updates-list {
    display: flex;
    flex-direction: column;
}

.live-update-item {
    border-bottom: 1px dotted #f0f0f0;
    padding-bottom: 20px;
}

.live-update-item:last-child {
    border-bottom: none;
}

.live-badge {
    display: inline-block;
    background-color: #d0021b;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 2px;
    margin-right: 8px;
}

.update-time {
    font-size: 14px;
    color: #666;
    display: inline-block;
}

.update-headline {
    font-size: 20px;
    margin: 8px 0;
    line-height: 1.3;
}

.update-summary {
    font-size: 16px;
    color: #010101;
    margin-bottom: 10px;
}

.update-meta {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.live-updates-featured {
    position: relative;
}

.live-updates-featured img {
    width: 100%;
    height: auto;
}

.live-updates-featured figcaption {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}

.see-more-updates {
    margin-top: 15px;
    font-size: 14px;
    color: #567b95;
}


/* Main Content Styles */

.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.main-content-area {
    max-width: 100%;
    height: auto;
    padding: 0 20px;
    font-size: 17px;
    color: #010101;
    margin-bottom: 30px;
}

.main-content-area img {
    max-width: 100%;
    height: auto;
}

.lead-story {
    margin-bottom: 30px;
}

.lead-story img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.lead-story h2 {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.lead-story p {
    font-size: 17px;
    color: #333;
    margin-bottom: 15px;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.story {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.story:hover {
    transform: translateY(-5px);
}

.story h3 {
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.story p {
    font-size: 16px;
    color: #010101;
}

.story img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.title {
    font-size: 23px;
    font-style: italic;
    font-weight: bold;
    text-transform: lowercase;
    color: #090909;
    padding-bottom: 15px;
}

.main-content-left {
    margin-bottom: 30px;
}


/* Enhanced Sidebar Styles */

.sidebar {
    border-left: 1px dotted #e2e2e2;
    padding-left: 20px;
    height: fit-content;
    width: 100%;
    max-width: 350px;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #e2e2e2;
}

.sidebar-story {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dotted #f0f0f0;
}

.sidebar-story:last-child {
    border-bottom: none;
}

.sidebar-story h4 {
    font-size: 17px;
    margin-bottom: 5px;
    line-height: 1.3;
}

.sidebar-story p {
    font-size: 14px;
    color: #666;
}

.copyright {
    font-size: 12px;
}


/* Featured Content in Sidebar */

.featured-sidebar-item {
    margin-bottom: 25px;
}

.featured-sidebar-item img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.featured-sidebar-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.featured-sidebar-item p {
    font-size: 16px;
    color: #010101;
    margin-bottom: 8px;
}


/* More to Explore Section */

.explore-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.explore-item {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #ccc;
    padding: 10px;
}

.explore-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.explore-item-content {
    flex: 1;
}

.explore-item h5 {
    font-size: 16px;
    line-height: 1.3;
}


/* Opinion Section in Sidebar */

.opinion-label {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: ##010101;
}

.opinion-sidebar-item {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #000000;
}

.opinion-sidebar-item:last-child {
    border-bottom: none;
}

.opinion-author {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.opinion-headline {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.3;
}


/* Newsletter Section in Sidebar */

.newsletter-sidebar {
    background-color: #eee;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.newsletter-sidebar h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.newsletter-sidebar p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.newsletter-signup {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-signup input {
    padding: 8px 12px;
    border: 1px dotted #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
}

textarea {
    width: 100%;
}

.newsletter-signup button {
    background-color: #567b95;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.newsletter-signup button:hover {
    background-color: #45667d;
}


/*nisargadatta section */

.nisargadatta {
    margin-bottom: 30px;
    border: 1px solid rgb(228, 234, 236);
    border-radius: 5%;
    padding: 0 10px;
}

.nisargadatta p {
    margin-top: 30px;
    margin-bottom: 10px;
}

.nisargadatta-items {
    margin-top: 10px;
    font-size: 16px;
    border-bottom: 1px dotted #555353;
}

.nisargadatta-item {
    display: flex;
    border-bottom: 1px dotted #555353f0;
    padding: 3px 0;
}

.nisargadatta-items:last-child {
    border-bottom: none;
}

.nisargadatta-item:last-child {
    border-bottom: none;
}

.nisargadatta-text {
    padding-top: 15px;
    font-size: 18px;
    padding-left: 10px;
    font-weight: 300;
    font-family: Lato;
}

.nisargadatta-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.nisargadatta-item-content {
    flex: 1;
    margin: 15px;
}

.nisargadatta-item h5 {
    font-size: 16px;
    line-height: 1.3;
}


/* Most Shared Section */

.most-shared {
    margin-top: 30px;
}

.most-shared h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #e2e2e2;
}

.shared-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dotted #f0f0f0;
}

.shared-item:last-child {
    border-bottom: none;
}

.shared-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
}

.shared-item-content {
    flex: 1;
}

.shared-item h5 {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.3;
}


/* Opinion Section */

.opinion-section {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
}

.opinion-section h2 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #333;
}

.opinion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.opinion-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.opinion-item p {
    font-size: 14px;
    color: #666;
}

.opinion-item img {
    max-width: 100%;
    min-width: 250px;
}

.opinion-subitem {
    margin-top: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dotted gray;
    padding-bottom: 5px;
}

.opinion-subitem h4 {
    font-size: 16px;
}


/* Footer Styles */

footer {
    background-color: #000;
    padding: 40px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 30px;
    margin-left: 0px;
    margin-right: 50px;
    align-items: center;
}

.footer-item {
    padding: 10px;
    width: 100%;
}

.footer-section h3 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #fff;
}

.footer-section ul li {
    margin-bottom: 8px;
    font-size: 16px;
    color: white;
}

.footer-text {
    color: white;
    font-size: 14px;
    font-style: italic;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #eee;
}

.footer-links a {
    margin-right: 15px;
}

.svg-center {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}


/* Responsive Styles */

@media (max-width: 992px) {
    .top-content {
        grid-template-columns: 1fr;
    }
    .main-content {
        grid-template-columns: 1fr;
    }
    .sidebar {
        border-left: none;
        padding-left: 0;
        padding-top: 20px;
        position: static;
        max-width: 100%;
    }
    .opinion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .live-updates-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    nav ul {
        flex-wrap: wrap;
    }
    nav li {
        margin: 5px 10px;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .opinion-grid {
        grid-template-columns: 1fr;
    }
    .top-text {
        font-size: 16px;
    }
    .main-content-area {
        max-width: 100%;
        height: auto;
        padding: 0 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 430px) {
    .explore-item-content h5 {
        font-size: 16px;
    }
    .top-text {
        font-size: 16px;
    }
}

iframe[src*="youtube.com"] {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9
}

.sharing-widget {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: inline-flex;
    gap: 8px;
    background: #fff;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #ccc;
}

.share-btn.facebook:hover {
    color: #1877f2;
}

.share-btn.x:hover {
    color: #000000;
}

.share-btn.email:hover {
    color: #ea4335;
}

.share-btn.sms:hover {
    color: #34a853;
}

.share-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.widget-container {
    display: inline-block;
    margin-top: 40px;
}

.cs-char-count {
    margin: 0;
    padding: 0;
    font-size: 12px;
}


/* Comment System Styles - Unique CSS Classes */

.cs-comment-system {
    margin: 30px 0;
    font-family: sans-serif;
    font-size: 16px;
    width: 100%;
    color: #333;
}

.cs-comment-form-container {
    margin-bottom: 40px;
    width: 100%;
}

.cs-comment-form {
    padding: 25px;
    background: #f8f8f8;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
}

.cs-form-title {
    color: #444;
    margin-bottom: 20px;
    font-size: 18px;
}

.cs-form-group {
    margin-bottom: 20px;
    width: 100%;
}

.cs-form-label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 16px;
}

.cs-form-input,
.cs-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: sans-serif;
    transition: all 0.3s;
    background: #fff;
    color: #333;
    box-sizing: border-box;
}

.cs-form-input:focus,
.cs-form-textarea:focus {
    outline: none;
    border-color: #888;
    box-shadow: 0 0 0 2px rgba(136, 136, 136, 0.1);
}

.cs-form-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.cs-submit-button {
    background: #666;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cs-submit-button:hover {
    background: #555;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.cs-comments-container {
    margin-top: 30px;
    width: 100%;
}

.cs-comments-title {
    color: #444;
    margin-bottom: 20px;
    font-size: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #555;
}

.cs-comment-count {
    display: inline-block;
    background: #666;
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    margin-left: 8px;
    font-size: 14px;
    font-weight: normal;
}

.cs-comments-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cs-comment-item {
    margin: 0 auto;
    padding: 10px 0;
    width: 95%;
    border-bottom: 1px solid #555;
}

.cs-comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.cs-comment-author {
    font-weight: 600;
    color: #444;
    font-size: 16px;
}

.cs-comment-date {
    color: #777;
    font-size: 14px;
}

.cs-comment-text {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
    word-wrap: break-word;
}

.cs-no-comments {
    text-align: center;
    color: #777;
    font-style: italic;
    padding: 10px 10px;
    font-size: 16px;
}

.cs-alert {
    padding: 15px;
    border-radius: 4px;
    padding: 15px 0;
    margin: 0 auto;
    text-lign: center;
    font-weight: 500;
    font-size: 16px;
    color: red;
    width: 100%;
    box-sizing: border-box;
}

.cs-alert.cs-success {
    background: #e8f5e8;
    color: #2d5016;
    border: 1px solid #d0e6d0;
}

.cs-alert.cs-error {
    background: #f8e8e8;
    color: #5c1f1f;
    border: 1px solid #e6d0d0;
}


/* Responsive Design */

@media (max-width: 768px) {
    .cs-comment-system {
        margin: 20px 0;
        font-size: 16px;
    }
    .cs-comment-form {
        padding: 20px;
    }
    .cs-comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .cs-comment-date {
        font-size: 14px;
    }
    .cs-form-title,
    .cs-comments-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cs-comment-system {
        margin: 15px 0;
    }
    .cs-comment-form {
        padding: 15px;
    }
    .cs-form-input,
    .cs-form-textarea {
        padding: 10px 12px;
    }
    .cs-submit-button {
        padding: 10px 20px;
        width: 100%;
        justify-content: center;
    }
}


/* Print Styles */

@media print {
    .cs-comment-form {
        display: none;
    }
    .cs-comment-system {
        color: #000;
    }
}


/* Image CAPTCHA Styles */

.cs-captcha-group {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #777;
}

.cs-captcha-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.cs-captcha-image {
    text-align: center;
    flex: 0 0 auto;
}

.cs-captcha-image img {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    background: #fff;
    margin-bottom: 10px;
}

.cs-refresh-captcha {
    background: #777;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.cs-refresh-captcha:hover {
    background: #555;
}

.cs-captcha-input {
    flex: 1;
    min-width: 200px;
}

.cs-captcha-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 16px;
}

.cs-add-comment {
    margin: 20px 0 0 0;
    ;
    font-weight: 600;
    color: #777;
    font-size: 16px;
}

.cs-add-comment-lebel {
    font-weight: 600;
    color: #777;
    font-size: 14px;
}

.cs-captcha-input .cs-form-input {
    width: 120px;
    text-align: center;
    font-family: monospace;
    font-size: 16px;
    letter-spacing: 2px;
}


/* Responsive CAPTCHA */

@media (max-width: 480px) {
    .cs-captcha-container {
        flex-direction: column;
        text-align: center;
    }
    .cs-captcha-input {
        min-width: auto;
        width: 100%;
    }
    .cs-captcha-input .cs-form-input {
        width: 100px;
    }
}


/* Math CAPTCHA Styles */

.cs-math-captcha {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.cs-math-problem {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
    padding: 10px;
    background: white;
    border-radius: 4px;
    border: 1px solid #eee;
}

.cs-math-problem strong {
    color: #333;
    font-size: 20px;
}

.cs-math-input {
    width: 100px !important;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.cs-captcha-input {
    text-align: center;
}

.cs-captcha-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}


/* AJAX Styles */

.cs-ajax-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 500;
    display: none;
}

.cs-ajax-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.cs-ajax-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.cs-loading-button {
    background: #777 !important;
    cursor: not-allowed;
}

.cs-loading-button:hover {
    background: #777 !important;
    transform: none !important;
}


/* Smooth transitions */

.cs-comment-form-container {
    transition: all 0.3s ease;
}

.cs-comments-container {
    transition: all 0.3s ease;
}


/* AJAX Styles */

.cs-ajax-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 500;
    display: none;
}

.cs-ajax-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.cs-ajax-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.cs-loading-button {
    background: #777 !important;
    cursor: not-allowed;
}

.cs-loading-button:hover {
    background: #777 !important;
    transform: none !important;
}

.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Math CAPTCHA Refresh Button */

.cs-math-problem {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cs-refresh-math {
    background: #777;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 8px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s;
}

.cs-refresh-math:hover {
    background: #555;
}


/* Ensure proper form styling */

.cs-comment-form-element {
    margin: 0;
    padding: 0;
}

.cs-form-input:invalid,
.cs-form-textarea:invalid,
.cs-math-input:invalid {
    border-color: #f8d7da;
}

.cs-form-input:valid,
.cs-form-textarea:valid,
.cs-math-input:valid {
    border-color: #d4edda;
}


/* Add Comment Button Styles */

.cs-add-comment-btn {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: sans-serif;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cs-add-comment-btn:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cs-add-comment-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cs-add-comment-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.3);
}

.cs-add-comment-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cs-add-comment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cs-add-comment-btn:hover::before {
    left: 100%;
}

.cs-add-comment-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cs-add-comment-btn:hover i {
    transform: translateX(2px);
}


/* Loading state for the button */

.cs-add-comment-btn.loading {
    background: #9ca3af;
    cursor: not-allowed;
}

.cs-add-comment-btn.loading i {
    animation: fa-spin 1s infinite linear;
}


/* Alternative simpler button style */

.cs-add-comment-btn.simple {
    background: #6b7280;
    border: 2px solid #6b7280;
    padding: 12px 24px;
    box-shadow: none;
}

.cs-add-comment-btn.simple:hover {
    background: #4b5563;
    border-color: #4b5563;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cs-add-comment-btn.simple:focus {
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.3);
}


/* Small screen adjustments */

@media (max-width: 480px) {
    .cs-add-comment-btn {
        padding: 12px 20px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}