/* MyList Page - Ana Sayfa ile Tamamen Uyumlu */

/* Ana Sayfa Body Stili - Exact Match */
body {
    background: #ffffff;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    margin: 0;
    padding: 0;
    color: #1a202c;
    line-height: 1.5;
    font-size: 15px;
}

/* Ana Sayfa Header Stili - Exact Match */
.header {
    background: #ffffff;
    padding: 12px 20px;
    border-bottom: 1px solid #e2e8f0;
    margin: 0;
    max-width: none;
    border-radius: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-items-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    gap: 20px;
}

.header-logo {
    flex: 0 0 auto;
}

.header-logo img {
    height: 28px;
    opacity: 1;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0;
    background: transparent;
    padding: 0;
    border: none;
}

.header-item-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.header-item-wrapper a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
    transition: color 0.15s ease;
}

.header-item-wrapper:hover a {
    color: #2d3748;
}

.header-item-wrapper.active a {
    color: #3182ce;
    font-weight: 600;
}

.header-item-wrapper a i {
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.header-item-wrapper a span {
    font-size: 14px;
}

/* Content Container - Ana Sayfa Stili */
.content-container {
    margin: 16px auto;
    max-width: 1140px;
    padding: 0 20px;
}

.news-section-container {
    background: #ffffff;
    padding: 24px;
    margin: 16px 0;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* MyList Specific Styles - Ana Sayfa Teması ile Hizalama */
.mylist-final {
    background: #ffffff;
    padding: 24px;
    margin: 16px 0;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* Header Section */
.mylist-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.mylist-title {
    color: #1a202c;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mylist-title .icon-badge {
    background: #3182ce;
    color: white;
    padding: 8px;
    border-radius: 8px;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(49, 130, 206, 0.2);
}

.mylist-subtitle {
    color: #4a5568;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    margin-bottom: 32px;
}

/* MAC Address Card */
.mac-card {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.field-label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 14px;
}

.mac-input-wrapper {
    margin-bottom: 12px;
}

.mac-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #cbd5e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #ffffff;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.mac-input:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.1);
    background: #fbfbfb;
}

.mac-input.error {
    border-color: #e53e3e;
    background: #fef5f5;
}

.mac-input.error:focus {
    box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.1);
}

.mac-input::placeholder {
    color: #a0aec0;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.field-error {
    color: #e53e3e;
    font-size: 12px;
    margin-top: 4px;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.field-error.visible {
    opacity: 1;
}

.mac-actions {
    margin-top: 16px;
}

/* Primary Button Styles */
.primary-btn {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(49, 130, 206, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    user-select: none;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #2a4a8b 100%);
    box-shadow: 0 4px 8px rgba(49, 130, 206, 0.3);
    transform: translateY(-1px);
}

.primary-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(49, 130, 206, 0.2);
}

/* Playlist Card */
.playlist-card {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.playlist-table-wrapper {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.playlist-card-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-header-line {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 20px;
}

.table-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.playlist-card-header h2 {
    margin: 0;
    color: #1a202c;
    font-size: 18px;
    font-weight: 600;
}

.add-row-inline {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(49, 130, 206, 0.2);
    user-select: none;
}

.add-row-inline:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #2a4a8b 100%);
    box-shadow: 0 3px 6px rgba(49, 130, 206, 0.3);
    transform: translateY(-1px);
}

.add-row-inline:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(49, 130, 206, 0.2);
}

.add-row-inline--header {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
}

/* Table Styles */
.table-scroll {
    overflow-x: auto;
}

.playlist-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.playlist-table th {
    background: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    font-size: 14px;
}

.playlist-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

.playlist-table tr:hover {
    background: #f7fafc;
}

.text-input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #cbd5e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    background: #ffffff;
    font-family: inherit;
}

.text-input.slim {
    padding: 8px 12px;
}

.text-input:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
    background: #fbfbfb;
}

.text-input.error {
    border-color: #e53e3e;
    background: #fef5f5;
}

.text-input.error:focus {
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.text-input::placeholder {
    color: #a0aec0;
    opacity: 1;
}

.url-cell {
    position: relative;
}

.validity-indicator {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.validity-indicator.is-valid {
    color: #38a169;
}

.validity-indicator.is-error {
    color: #e53e3e;
}

.actions-cell {
    text-align: center;
}

.delete-row-btn {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(229, 62, 62, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.delete-row-btn:hover {
    background: linear-gradient(135deg, #c53030 0%, #a52a2a 100%);
    box-shadow: 0 3px 6px rgba(229, 62, 62, 0.3);
    transform: translateY(-1px);
}

.delete-row-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(229, 62, 62, 0.2);
}

.row-index {
    text-align: center;
    font-weight: 600;
    color: #2d3748;
}

/* Delete Form */
.delete-form {
    margin-top: 32px;
}

.delete-card {
    background: #fed7d7;
    border: 1px solid #feb2b2;
    border-radius: 8px;
    padding: 20px;
}

.field-group {
    margin-bottom: 16px;
}

.field-group.wide {
    margin-bottom: 16px;
}

.field-group.wide label {
    display: block;
    font-weight: 600;
    color: #742a2a;
    margin-bottom: 8px;
    font-size: 14px;
}

.text-input.mac {
    width: 200px;
}

.delete-actions {
    margin-top: 16px;
}

.danger-btn {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(229, 62, 62, 0.2);
    user-select: none;
}

.danger-btn:hover {
    background: linear-gradient(135deg, #c53030 0%, #a52a2a 100%);
    box-shadow: 0 4px 8px rgba(229, 62, 62, 0.3);
    transform: translateY(-1px);
}

.danger-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(229, 62, 62, 0.2);
}

/* Content Information Section */
.content-info-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.info-header {
    text-align: center;
    margin-bottom: 40px;
}

.info-title {
    color: #1a202c;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.info-title i {
    background: #3182ce;
    color: white;
    padding: 8px;
    border-radius: 8px;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(49, 130, 206, 0.2);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.info-card {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.2s ease;
}

.info-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.card-icon {
    background: #3182ce;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    box-shadow: 0 2px 8px rgba(49, 130, 206, 0.2);
}

.card-title {
    color: #1a202c;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.card-content {
    color: #4a5568;
    line-height: 1.6;
}

/* Instruction Steps */
.instruction-steps {
    display: grid;
    gap: 16px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.step-number {
    background: #3182ce;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Spec List */
.spec-list {
    display: grid;
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item strong {
    color: #2d3748;
}

.spec-item span {
    color: #4a5568;
}

/* Download Section */
.download-section {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 32px;
    margin: 32px 0;
    text-align: center;
}

.download-header {
    margin-bottom: 24px;
}

.download-title {
    color: #1a202c;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.download-title i {
    background: #3182ce;
    color: white;
    padding: 8px;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(49, 130, 206, 0.2);
}

.download-subtitle {
    color: #4a5568;
    font-size: 14px;
    margin: 0;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.download-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.2s ease;
}

.download-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.platform-icon {
    font-size: 32px;
    color: #3182ce;
    margin-bottom: 12px;
}

.download-card h4 {
    margin: 0 0 8px 0;
    color: #1a202c;
    font-size: 16px;
    font-weight: 600;
}

.download-card p {
    margin: 0 0 16px 0;
    color: #4a5568;
    font-size: 14px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(49, 130, 206, 0.2);
    user-select: none;
}

.download-btn:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #2a4a8b 100%);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(49, 130, 206, 0.3);
    transform: translateY(-1px);
}

.download-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(49, 130, 206, 0.2);
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(49, 130, 206, 0.2);
    user-select: none;
}

.download-link:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #2a4a8b 100%);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(49, 130, 206, 0.3);
    transform: translateY(-1px);
}

.download-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(49, 130, 206, 0.2);
}

/* Troubleshooting Section */
.troubleshooting-section {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 32px;
    margin: 32px 0;
}

.troubleshooting-header {
    text-align: center;
    margin-bottom: 32px;
}

.troubleshooting-title {
    color: #1a202c;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.troubleshooting-title i {
    background: #3182ce;
    color: white;
    padding: 8px;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(49, 130, 206, 0.2);
}

.trouble-header {
    text-align: center;
    margin-bottom: 32px;
}

.trouble-title {
    color: #1a202c;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.trouble-title i {
    background: #3182ce;
    color: white;
    padding: 8px;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(49, 130, 206, 0.2);
}

.faq-grid {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 600;
    font-size: 14px;
}

.faq-question i {
    color: #3182ce;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.faq-answer {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.5;
    margin-left: 32px;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animations */
.row-fade-enter-active, .row-fade-leave-active {
    transition: all 0.3s ease;
}

.row-fade-enter, .row-fade-leave-to {
    opacity: 0;
    transform: translateY(-10px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .content-container {
        margin: 8px auto;
        padding: 0 12px;
    }
    
    .news-section-container {
        margin: 8px 0;
        padding: 16px;
    }
    
    .mylist-final {
        padding: 16px;
        margin: 8px 0;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .mylist-title {
        font-size: 22px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .mylist-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    /* Mobile Optimized Table */
    .table-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .playlist-table {
        font-size: 13px;
        min-width: 500px;
    }
    
    .playlist-table th,
    .playlist-table td {
        padding: 8px 6px;
    }
    
    .text-input {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
        min-height: 44px; /* Touch-friendly */
    }
    
    .text-input.slim {
        padding: 10px;
        min-height: 40px;
    }
    
    .text-input.mac {
        width: 100%;
        font-size: 16px;
        padding: 12px;
    }
    
    /* Touch-friendly buttons */
    .primary-btn,
    .danger-btn,
    .add-row-inline,
    .delete-row-btn {
        min-height: 44px;
        font-size: 14px;
        padding: 12px 16px;
        touch-action: manipulation;
    }
    
    .add-row-inline {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .delete-row-btn {
        min-height: 36px;
        padding: 8px 12px;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .faq-answer {
        margin-left: 0;
        margin-top: 8px;
    }

    .header-nav {
        display: none;
    }

    .header-items-container {
        justify-content: center;
    }
    
    /* Enhanced mobile form experience */
    .mac-card {
        background: #ffffff;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .playlist-card {
        background: #ffffff;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .field-label {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 480px) {
    .content-container {
        padding: 0 8px;
    }
    
    .news-section-container {
        padding: 12px;
        margin: 8px 0;
    }
    
    .mylist-final {
        padding: 12px;
        margin: 8px 0;
    }
    
    .mylist-header {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
    
    .mylist-title {
        font-size: 18px;
        flex-direction: column;
        gap: 6px;
    }
    
    .mylist-title .icon-badge {
        padding: 6px;
        font-size: 14px;
    }
    
    .mylist-subtitle {
        font-size: 13px;
        padding: 0 8px;
    }
    
    /* Mobile-First Table Design */
    .table-scroll {
        display: none;
    }
    
    .playlist-table-mobile {
        display: block;
    }
    
    .mobile-playlist-container {
        display: block;
    }
    
    .mobile-row {
        background: #ffffff;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .mobile-row-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .mobile-row-index {
        background: #3182ce;
        color: white;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 600;
        box-shadow: 0 2px 4px rgba(49, 130, 206, 0.3);
    }
    
    .mobile-field {
        margin-bottom: 16px;
    }
    
    .mobile-field:last-child {
        margin-bottom: 0;
    }
    
    .mobile-field label {
        display: block;
        font-weight: 600;
        color: #2d3748;
        margin-bottom: 8px;
        font-size: 14px;
    }
    
    .mobile-field .text-input {
        font-size: 16px; /* Prevents zoom */
        padding: 14px;
        min-height: 48px;
        border-radius: 8px;
    }
    
    .mobile-url-field {
        position: relative;
    }
    
    .mobile-validity-indicator {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
    }
    
    .mobile-validity-indicator.is-valid {
        color: #38a169;
    }
    
    .mobile-validity-indicator.is-error {
        color: #e53e3e;
    }
    
    .mobile-delete-btn {
        background: #e53e3e;
        color: white;
        border: none;
        padding: 8px;
        border-radius: 8px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.15s ease;
        min-height: 32px;
        min-width: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-delete-btn:hover {
        background: #c53030;
    }

    /* Enhanced Mobile Forms */
    .mac-card {
        background: #ffffff;
        border: 2px solid #e2e8f0;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .playlist-card {
        background: #ffffff;
        border: 2px solid #e2e8f0;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .playlist-card-header {
        padding: 16px 20px;
        border-radius: 16px 16px 0 0;
    }
    
    .mac-input {
        font-size: 16px;
        padding: 14px;
        min-height: 48px;
        border-radius: 8px;
        border: 2px solid #cbd5e0;
    }
    
    .mac-input:focus {
        border-color: #3182ce;
        box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.15);
    }
    
    .field-label {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    /* Touch-Optimized Buttons */
    .primary-btn,
    .danger-btn {
        min-height: 48px;
        font-size: 16px;
        padding: 14px 20px;
        border-radius: 8px;
        font-weight: 600;
        touch-action: manipulation;
        width: 100%;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .add-row-inline {
        min-height: 44px;
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 8px;
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile Information Sections */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .download-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .download-btn {
        min-height: 44px;
        padding: 12px 16px;
        border-radius: 8px;
        width: 100%;
        justify-content: center;
    }
    
    .info-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .card-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    /* Mobile FAQ */
    .faq-item {
        padding: 16px;
        border-radius: 12px;
    }
    
    .faq-question {
        font-size: 14px;
        gap: 10px;
    }
    
    .faq-answer {
        margin-left: 0;
        margin-top: 8px;
        font-size: 13px;
    }
    
    /* Delete Form Mobile */
    .delete-card {
        padding: 16px;
        border-radius: 12px;
    }
    
    .text-input.mac {
        width: 100%;
        font-size: 16px;
        padding: 14px;
        min-height: 48px;
    }
    
    /* Content Sections Mobile */
    .content-info-section {
        margin-top: 32px;
        padding-top: 24px;
    }
    
    .download-section,
    .troubleshooting-section {
        padding: 20px;
        border-radius: 12px;
    }
    
    .download-title,
    .trouble-title {
        font-size: 18px;
        flex-direction: column;
        gap: 8px;
    }
    
    .download-title i,
    .trouble-title i {
        padding: 6px;
        font-size: 14px;
    }
}
