/* RSS Link Styles */
.site-footer a {
    color: #6c757d;
}

body {
    font-family: sans-serif;
    background-color: #f5f5f5;
    color: #121212;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.dark body {
    background-color: #121212;
    color: #e0e0e0;
}

.site-header {
    background-color: #d3d3d3;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

.dark .site-header {
    background-color: #1e1e1e;
    border-bottom: 1px solid #333;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Space between icon placeholder and title */
}

.site-icon-placeholder {
    width: 153px;
    height: 53px;
    /* Placeholder color, can be replaced with an SVG */
    border-radius: 8px;
    /* Optional: rounded corners */
    /* Could add a simple SVG here */
}

.site-header h1 {
    margin: 0;
    /* Remove default margin */
    font-size: 2.5em;
    margin: 0 50px;
}

.site-header h1 a {
    color: #121212;
}

.dark .site-header h1 a {
    color: #e0e0e0;
}

.header-right {
    text-align: right;
    /* Align text to the right */
    display: flex;
    gap: 20px;
}

.header-right p {
    margin: 5px 0;
    font-size: 1em;
    color: #444444;
}

.dark .header-right p {
    color: #bbbbbb;
}

.header-right p:last-of-type {
    margin-bottom: 0;
    /* Remove bottom margin from the last contact line */
}

.header-right .contacts {
    text-align: left;
}

.header-right .theme-toggle {
    align-self: center;
}

.header-right .theme-toggle button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

#sun-icon {
    display: none;
}

.dark #moon-icon {
    display: none;
}

.dark #sun-icon {
    display: block;
    color: #f5f5f5;
}

.site-header a {
    text-decoration: none;
    color: #007bff;
    /* Remove underline */
}

.site-header .site-icon-placeholder a {
    color: unset;
}

.app-showcase {
    padding: 20px 40px;
    max-width: 1200px;
    margin: 20px auto;
}

.app-showcase h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* App List Styles */
.app-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Active Filters Styles */
.active-filters {
    background-color: #d3d3d3;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dark .active-filters {
    background-color: #1e1e1e;
    border: 1px solid #333;
}

.active-filters h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #121212;
    font-size: 1.1em;
}

.dark .active-filters h3 {
    color: #e0e0e0;
}

.active-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.active-tag {
    display: inline-flex;
    align-items: center;
    background-color: #007bff;
    color: white;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.85em;
}

.active-tag .remove-filter {
    margin-left: 6px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    line-height: 1;
}

.active-tag .remove-filter:hover {
    color: #f0f0f0;
}

.no-filters {
    color: #666;
    font-style: italic;
}

.dark .no-filters {
    color: #999;
}

.clear-all-filters {
    display: inline-block;
    background-color: #dc3545;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9em;
    transition: background-color 0.2s ease;
}

.clear-all-filters:hover {
    background-color: #c82333;
    text-decoration: none;
    color: white;
}

/* Tag styles based on group type */
.tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 0.75em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Project tags - синий */
.tag-project {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-color: rgba(59, 130, 246, 0.3);
}

.dark .tag-project {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* Platform tags - фиолетовый */
.tag-platform {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border-color: rgba(139, 92, 246, 0.3);
}

.dark .tag-platform {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

/* Custom tags - оранжевый для лучшей видимости */
.tag-custom {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-color: rgba(245, 158, 11, 0.3);
}

.dark .tag-custom {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #fef3c7;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
}

/* Legacy support для старых классов */
.tag.category {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-color: rgba(59, 130, 246, 0.3);
}

.dark .tag.category {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.tag.feature {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-color: rgba(16, 185, 129, 0.3);
}

.dark .tag.feature {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

/* Hover effects */
.tag:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.dark .tag:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.tag-project:hover {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.dark .tag-project:hover {
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.5);
}

.tag-platform:hover {
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.dark .tag-platform:hover {
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.5);
}

.tag-custom:hover {
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.dark .tag-custom:hover {
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.6);
}

/* Tag container in app cards */
.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    align-items: center;
}

.tag-container .tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Active filters section */
.active-filters {
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.dark .active-filters {
    background-color: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.active-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.active-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 18px;
    font-size: 0.8em;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Active project tags - синий */
.active-tag-project {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.dark .active-tag-project {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.4);
}

/* Active platform tags - фиолетовый */
.active-tag-platform {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.dark .active-tag-platform {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.4);
}

/* Active custom tags - оранжевый */
.active-tag-custom {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.dark .active-tag-custom {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #fef3c7;
    box-shadow: 0 2px 12px rgba(217, 119, 6, 0.4);
}

.remove-filter {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    transition: all 0.2s ease;
}

.remove-filter:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Responsive adjustments for tags */
@media (max-width: 768px) {
    .tag-container {
        gap: 6px;
        margin-bottom: 10px;
    }

    .tag {
        padding: 3px 8px;
        font-size: 0.7em;
        border-radius: 12px;
    }

    .active-filters {
        padding: 10px;
        margin-bottom: 15px;
    }

    .active-tag {
        padding: 5px 8px;
        font-size: 0.75em;
    }

    .remove-filter {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
}

/* Accessibility improvements */
.tag:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .tag {
        border-width: 2px;
        font-weight: 700;
    }

    .tag-project {
        background: #1d4ed8;
        border-color: #1e40af;
    }

    .tag-platform {
        background: #7c3aed;
        border-color: #6d28d9;
    }

    .tag-custom {
        background: #d97706;
        border-color: #b45309;
        color: white;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .tag {
        transition: none;
    }

    .tag:hover {
        transform: none;
    }
}

.app-card {
    background-color: #d3d3d3;
    /* Card background */
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    /* Indicate the card is clickable */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.dark .app-card {
    background-color: #1e1e1e;
    border: 1px solid #333;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.app-card-header {
    display: flex;
    /* Use flexbox to align icon and title */
    align-items: center;
    /* Vertically center icon and title */
    gap: 15px;
    /* Space between icon and title */
    margin-bottom: 15px;
    /* Space below header */
}

.app-icon-placeholder {
    width: 50px;
    /* Adjust size as needed */
    height: 50px;
    /* Adjust size as needed */
    background-color: #007bff;
    /* Placeholder color, can be replaced with an SVG */
    border-radius: 8px;
    /* Optional: rounded corners */
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}

.app-card h3 {
    margin: 0;
    /* Remove default margin */
    color: #121212;
    /* White for app name */
    font-size: 1.1em;
    flex-grow: 1;
    /* Allow title to take up space */
    display: -webkit-box;
    display: box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dark .app-card h3 {
    color: #e0e0e0;
}

.app-card a {
    text-decoration: none;
}

.app-description {
    color: #444444;
    /* Lighter grey for description */
    font-size: 0.95em;
    margin-bottom: 15px;
    flex-grow: 1;
    /* Allows description to take up available space */
}

.dark .app-description {
    color: #bbbbbb;
}

.app-card-footer {
    display: flex;
    justify-content: space-between;
    /* Space between update info and button */
    align-items: center;
    /* Vertically align items */
    margin-top: auto;
    /* Push to the bottom */
    padding-top: 10px;
    /* Add some space above the footer content */
    border-top: 1px solid #f0f0f0;
    /* Separator line */
}

.dark .app-card-footer {
    border-top: 1px solid #282828;
}

.app-update-info {
    display: flex;
    flex-direction: column;
    /* Stack update info vertically */
    font-size: 0.85em;
    color: #666666;
    /* Grey for update info */
}

.dark .app-update-info {
    color: #888888;
}

.app-update-info span {
    margin: 2px 0;
    /* Space between lines */
}

.download-button {
    background-color: #007bff;
    text-decoration: none;
    /* Blue background */
    color: white;
    /* White text */
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    flex-shrink: 0;
    /* Prevent button from shrinking */
}

.download-button:hover {
    background-color: #0056b3;
    text-decoration: none;
    /* Darker blue on hover */
}

/* App Details Styles */
.app-details-container {
    /* Initially hidden by JS */
    max-width: 800px;
    /* Limit width of details page */
    margin: 0 auto;
    /* Center the details content */
    padding-top: 20px;
    /* Space below the title */
}

.app-details-container .back-button {
    background: none;
    border: none;
    color: #007bff;
    font-size: 1em;
    cursor: pointer;
    margin-bottom: 20px;
    padding: 0;
    transition: color 0.2s ease;
}

.app-details-container .back-button:hover {
    color: #0056b3;
    text-decoration: underline;
}

.app-details-card {
    background-color: #d3d3d3;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 30px;
    /* More padding for details */
    display: flex;
    flex-direction: column;
}

.dark .app-details-card {
    background-color: #1e1e1e;
    border: 1px solid #333;
}

.app-details-header {
    display: flex;
    /* Use flexbox to align icon and title */
    align-items: center;
    /* Vertically center icon and title */
    gap: 20px;
    /* More space than card header */
    margin-bottom: 20px;
    /* Space below header */
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.dark .app-details-header {
    border-bottom: 1px solid #282828;
}

.app-details-card .app-icon-placeholder {
    width: 80px;
    /* Larger icon for details */
    height: 80px;
    flex-shrink: 0;
}

.app-details-card h3 {
    margin: 0;
    color: #121212;
    font-size: 2em;
    /* Larger title */
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 150px;
    /* Prevent title from becoming too narrow */
}

.dark .app-details-card h3 {
    color: #f5f5f5;
}

.app-details-card .app-description {
    color: #444444;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.dark .app-details-card .app-description {
    color: #bbbbbb;
}

.app-details-more-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
}

.dark .app-details-more-info {
    border-top: 1px solid #282828;
}

.app-details-more-info a:visited {
    color: #6a0dad;
}

.dark .app-details-more-info a:visited {
    color: #caa8f5;
}

.download-latest-button {
    background-color: #007bff;
    /* Blue background */
    color: white;
    /* White text */
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    /* Slightly larger padding */
    font-size: 1em;
    /* Adjusted font size */
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    flex-shrink: 0;
    /* Prevent button from shrinking */
    margin-left: auto;
    /* Push button to the right */
    text-decoration: none;
}

.download-latest-button:hover {
    background-color: #0056b3;
    /* Darker blue on hover */
    text-decoration: none;
}

@media (max-width: 600px) {
    .app-details-header {
        flex-direction: column;
        /* Stack items vertically */
        align-items: flex-start;
        /* Align items to the start */
        gap: 10px;
        /* Reduce gap */
    }

    .app-details-card h3 {
        min-width: auto;
        /* Remove min-width constraint */
    }

    .download-latest-button {
        margin-left: 0;
        /* Remove left margin */
        width: auto;
        /* Auto width */
    }
}

.app-details-more-info h4 {
    color: #121212;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.dark .app-details-more-info h4 {
    color: #f5f5f5;
}

.app-details-more-info p,
.app-details-more-info ul {
    color: #444444;
    font-size: 1em;
    margin-bottom: 15px;
}

.dark .app-details-more-info p,
.dark .app-details-more-info ul {
    color: #bbbbbb;
}

.app-details-more-info ul {
    padding-inline-start: 40px;
    /* Remove default padding from ul */
}

.version-entry {
    background-color: #e8e8e8;
    /* Slightly darker background for entries */
    border: 1px solid #dddddd;
    border-radius: 4px;
    margin-bottom: 10px;
    /* Space between entries */
    overflow: hidden;
    /* Hide overflow during collapse */
}

.dark .version-entry {
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
}

.version-summary {
    padding: 15px;
    cursor: pointer;
    background-color: #ccc;
    /* Background for clickable summary */
    border-bottom: 1px solid #dddddd;
    /* Separator line */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.dark .version-summary {
    background-color: #333;
    border-bottom: 1px solid #3a3a3a;
}

.version-entry:last-child .version-summary {
    border-bottom: none;
    /* No border for the last summary */
}

.version-summary:hover {
    background-color: #bbb;
    /* Hover effect */
}

.dark .version-summary:hover {
    background-color: #444;
}

.version-summary strong {
    color: #121212;
}

.dark .version-summary strong {
    color: #f5f5f5;
}

.version-summary span {
    color: #444444;
}

.dark .version-summary span {
    color: #bbbbbb;
}

.toggle-icon {
    font-size: 0.8em;
    margin-left: 10px;
}

.version-details {
    padding: 15px;
    background-color: #d3d3d3;
    /* Same as card background */
    display: none;
    /* Initially hidden */
    color: #444444;
}

.dark .version-details {
    background-color: #1e1e1e;
    color: #bbbbbb;
}

.version-details p {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.version-entry.open .version-details {
    display: block;
    /* Show when the entry has the 'open' class */
}

.version-download-button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    margin-top: 5px;
    /* Space above the button */
    display: inline-block;
    /* Ensure button is inline-block */
    text-decoration: none;

}

.version-download-button:hover {
    background-color: #0056b3;
    text-decoration: none;
}

.app-details-footer {
    display: none;
    /* Hide the original details footer */
}

.site-footer {
    background-color: #d3d3d3;
    /* Same as header background */
    color: #444444;
    /* Lighter grey for text */
    text-align: center;
    /* Center the text */
    padding: 20px 40px;
    /* Add padding */
    margin-top: 40px;
    /* Add space above the footer */
    border-top: 1px solid #ccc;
    /* Add a top border */
    font-size: 0.9em;
}

.dark .site-footer {
    background-color: #1e1e1e;
    color: #bbbbbb;
    border-top: 1px solid #333;
}

.site-footer p {
    margin: 0;
    /* Remove default paragraph margin */
}

.app-links {
    margin-top: 20px;
    /* Space above the links section */
    padding-top: 20px;
    border-top: 1px solid #282828;
    /* Separator line */
}

.app-links h4 {
    margin-top: 0;
    /* Remove default margin-top */
    margin-bottom: 10px;
    /* Space below the heading */
    color: #121212;
    /* White color for the heading */
    font-size: 1.2em;
}

.dark .app-links h4 {
    color: #f5f5f5;
}

.app-links ul {
    list-style: none;
    /* Remove default list bullets */
    padding: 0;
    /* Remove default padding */
    display: flex;
    /* Arrange links in a row */
    flex-wrap: wrap;
    /* Allow links to wrap */
    gap: 15px;
    /* Space between links */
}

.app-links li {
    display: inline-block;
    /* Display list items inline */
    margin: 0;
    /* Remove default list item margin */
}

.app-links a {
    color: #007bff;
    /* Blue color for links */
    text-decoration: none;
    /* Remove underline */
}

.app-links a:visited {
    color: #6a0dad;
}

.dark .app-links a:visited {
    color: #caa8f5;
}

/* Pre-release Badge Styles */
.pre-release-badge {
    background-color: #ff9800;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-left: 8px;
    font-weight: normal;
}

.dark .pre-release-badge {
    background-color: #a66202;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(166, 98, 2, 0.4);
}

@media (max-width: 768px) {
    @media (max-width: 768px) {
        .site-header .site-icon-placeholder {
            width: 92px;
            height: 32px;
        }

        .site-header .logo {
            width: 100%;
            height: 100%;
        }

        .site-header h1 {
            font-size: 18px;
            margin: 0;
        }

        .header-right {
            display: flex;
            align-items: flex-start;
        }

        .header-right {
            gap: 10px;
        }

        .contacts p {
            font-size: 12px;
        }

        .theme-toggle {
            margin-top: 10px;
        }

        .site-header {
            padding: 10px 15px;
        }

        .theme-toggle svg {
            width: 20px;
            height: 20px;
        }

        .app-details-container {
            padding: 10px;
        }

        .app-details-card {
            display: block;
            padding: 10px;
            border-radius: 8px;
            box-shadow: none;
        }

        .app-details-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .app-icon-placeholder {
            max-width: 100px;
            margin-bottom: 15px;
        }

        #details-app-name {
            font-size: 1.5rem;
        }

        .download-latest-button {
            font-size: 1rem;
            margin-top: 10px;
        }

        .app-description {
            font-size: 1rem;
            margin-top: 10px;
        }

        .app-details-more-info {
            margin-top: 20px;
        }

        .markdown-content {
            font-size: 0.9rem;
        }

        .version-summary {
            font-size: 1rem;
            cursor: pointer;
        }

        .version-details {
            display: none;
            margin-top: 10px;
        }

        .version-entry.open .version-details {
            display: block;
        }

        .version-download-button {
            font-size: 0.9rem;
            margin-top: 10px;
        }

        .app-links ul {
            padding-left: 20px;
        }

        .app-links ul li {
            margin-bottom: 10px;
        }

        .toggle-icon {
            font-size: 1.5rem;
            margin-left: 5px;
        }

        #details-app-version-history {
            padding-inline-start: unset;
        }
    }
}