* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.container {
    display: flex;
    padding: 20px;
    gap: 20px;
    min-height: 100vh;
}

.left-panel, .right-panel {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.main-panel {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

.tables {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.table-button {
    padding: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.table-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.table-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.table-total {
    font-size: 13px;
    color: #4CAF50;
    font-weight: 500;
}

.table-button:hover {
    background: #f8f8f8;
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.table-button.active {
    background: #4CAF50;
    border-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.2);
}

.table-button.active .table-name,
.table-button.active .table-area,
.table-button.active .table-total {
    color: white;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 10px;
}

.menu-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: scale(1);
    display: block;
}

.menu-item.filtered-out {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.menu-item:hover {
    transform: translateY(-3px);
    border-color: #4CAF50;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.menu-item:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.menu-item::after {
    content: '+';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: white;
    background: #4CAF50;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.menu-item:hover::after {
    right: 10px;
    opacity: 1;
}

.menu-item h3 {
    margin-bottom: 12px;
    color: #333;
    font-size: 18px;
}

.menu-item .price {
    color: #4CAF50;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.menu-item .price::before {
    content: '₺';
    font-size: 14px;
}

.order-items {
    margin: 20px 0;
    max-height: 500px;
    overflow-y: auto;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.order-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.order-item:last-child {
    margin-bottom: 0;
}

.order-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.order-item-content {
    padding: 12px 15px;
}

.item-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.item-name {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.item-details {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
}

.unit-price {
    font-size: 13px;
    color: #666;
    flex: 1;
}

.quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f8f8;
    padding: 3px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.quantity-btn {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
    padding: 0;
}

.quantity-btn:hover {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.quantity {
    font-weight: 600;
    color: #333;
    min-width: 24px;
    text-align: center;
}

.item-total {
    font-weight: 600;
    color: #4CAF50;
    font-size: 15px;
}

.delete-button {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: #666;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #ffebee;
    color: #e53935;
}

.delete-button svg {
    width: 16px;
    height: 16px;
}

.total-amount {
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(76,175,80,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.total-amount::before {
    content: 'Toplam';
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.total-amount span {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.total-amount span {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

.total-amount::before,
.total-amount::after,
.total-label {
    content: none;
    display: none;
}

.total-value {
    text-align: right;
    font-size: 1.4em;
    font-weight: 600;
    margin-left: auto;
}

.selected-table {
    background: #f8f8f8;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: all 0.3s ease;
}

.selected-table.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
    box-shadow: 0 4px 12px rgba(76,175,80,0.2);
}

.buttons {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

button {
    padding: 15px 25px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(76,175,80,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

button:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76,175,80,0.3);
}

#printOrder {
    background: #2196F3;
    box-shadow: 0 4px 12px rgba(33,150,243,0.2);
}

#printOrder:hover {
    background: #1976D2;
    box-shadow: 0 6px 16px rgba(33,150,243,0.3);
}

/* Scrollbar tasarımı */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.search-container {
    margin-bottom: 20px;
    padding: 0 10px;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    background-color: white;
}

.search-input:focus {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.search-input::placeholder {
    color: #999;
}

.controls-and-total {
    display: flex;
    align-items: center;
    gap: 15px;
}

.no-order {
    text-align: center;
    color: #666;
    padding: 30px;
    font-style: italic;
    background: white;
    border-radius: 8px;
    border: 1px dashed #ccc;
}

.right-panel {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px;
    border-radius: 12px;
    width: 350px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.right-panel h2 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.container {
    display: flex;
    padding: 20px;
    gap: 20px;
    min-height: 100vh;
}

.left-panel, .right-panel {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.main-panel {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

.tables {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.table-button {
    padding: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.table-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.table-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.table-total {
    font-size: 13px;
    color: #4CAF50;
    font-weight: 500;
}

.table-button:hover {
    background: #f8f8f8;
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.table-button.active {
    background: #4CAF50;
    border-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.2);
}

.table-button.active .table-name,
.table-button.active .table-area,
.table-button.active .table-total {
    color: white;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 10px;
}

.menu-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: scale(1);
    display: block;
}

.menu-item.filtered-out {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.menu-item:hover {
    transform: translateY(-3px);
    border-color: #4CAF50;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.menu-item:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.menu-item::after {
    content: '+';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: white;
    background: #4CAF50;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.menu-item:hover::after {
    right: 10px;
    opacity: 1;
}

.menu-item h3 {
    margin-bottom: 12px;
    color: #333;
    font-size: 18px;
}

.menu-item .price {
    color: #4CAF50;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.menu-item .price::before {
    content: '₺';
    font-size: 14px;
}

.order-items {
    margin: 20px 0;
    max-height: 500px;
    overflow-y: auto;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.order-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.order-item:last-child {
    margin-bottom: 0;
}

.order-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.order-item-content {
    padding: 12px 15px;
}

.item-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.item-name {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.item-details {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
}

.unit-price {
    font-size: 13px;
    color: #666;
    flex: 1;
}

.quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f8f8;
    padding: 3px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.quantity-btn {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
    padding: 0;
}

.quantity-btn:hover {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.quantity {
    font-weight: 600;
    color: #333;
    min-width: 24px;
    text-align: center;
}

.item-total {
    font-weight: 600;
    color: #4CAF50;
    font-size: 15px;
}

.delete-button {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: #666;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #ffebee;
    color: #e53935;
}

.delete-button svg {
    width: 16px;
    height: 16px;
}

.total-amount {
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(76,175,80,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.total-amount::before {
    content: 'Toplam';
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.total-amount span {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.total-amount span {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

.total-amount::before,
.total-amount::after,
.total-label {
    content: none;
    display: none;
}

.total-value {
    text-align: right;
    font-size: 1.4em;
    font-weight: 600;
    margin-left: auto;
}

.selected-table {
    background: #f8f8f8;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: all 0.3s ease;
}

.selected-table.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
    box-shadow: 0 4px 12px rgba(76,175,80,0.2);
}

.buttons {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

button {
    padding: 15px 25px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(76,175,80,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

button:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76,175,80,0.3);
}

#printOrder {
    background: #2196F3;
    box-shadow: 0 4px 12px rgba(33,150,243,0.2);
}

#printOrder:hover {
    background: #1976D2;
    box-shadow: 0 6px 16px rgba(33,150,243,0.3);
}

/* Scrollbar tasarımı */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.search-container {
    margin-bottom: 20px;
    padding: 0 10px;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    background-color: white;
}

.search-input:focus {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.search-input::placeholder {
    color: #999;
}

.controls-and-total {
    display: flex;
    align-items: center;
    gap: 15px;
}

.no-order {
    text-align: center;
    color: #666;
    padding: 30px;
    font-style: italic;
    background: white;
    border-radius: 8px;
    border: 1px dashed #ccc;
}

.right-panel {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px;
    border-radius: 12px;
    width: 350px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.right-panel h2 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.area-item .delete-btn:hover {
    background: #cc0000;
}

.area-tables {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.area-tables h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-item span {
    font-size: 14px;
    color: #333;
}

.table-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.table-item .delete-btn:hover {
    background: #cc0000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.dropdown-content a {
    color: #333;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #4CAF50;
    padding-left: 25px;
}

.dropdown-content a:hover svg {
    color: #4CAF50;
    transform: scale(1.1);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Modal İçeriği için Scroll */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Ürün Yönetimi Stilleri */
.edit-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-button:hover {
    background: #1976D2;
}

.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-button:hover {
    background: #d32f2f;
}

.primary-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.primary-button:hover {
    background: #45a049;
}

.secondary-button {
    background: #9e9e9e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #757575;
}

/* Yönetim Butonu ve Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    position: relative;
    overflow: hidden;
}

.manage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manage-button:hover::before {
    opacity: 1;
}

.manage-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.manage-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.manage-button:hover svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: white;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.dropdown-content a {
    color: #333;
    padding: 16px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    background: white;
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.25s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2E7D32;
    padding-left: 28px;
}

.dropdown-content a:hover svg {
    color: #2E7D32;
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content a:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .manage-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }

    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content,
    .dropdown:hover .dropdown-content {
        transform: translateY(0);
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 20px;
        font-size: 16px;
    }

    .dropdown-content a svg {
        width: 24px;
        height: 24px;
    }
}

/* Alan ve Masa Yönetimi Stilleri */
.areas-container {
    margin-bottom: 30px;
}

.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.manage-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.manage-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.manage-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.manage-button:hover svg {
    transform: rotate(180deg);
}

.manage-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76,175,80,0.2);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-button {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.area-button:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.area-button.active {
    background: #4CAF50;
    color: white;
    border-color: #45a049;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.input-group button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #45a049;
}

.current-tables {
    margin-top: 20px;
}

#tablesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.table-item button {
    padding: 5px 10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-item button:hover {
    background: #ff1111;
}

.current-areas {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.current-areas h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.area-item span {
    font-size: 14px;
    color: #333;
}

.area-item .delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
} 