* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
}

.logo img {
    max-height: 25px;
    width: auto;
}

.cart-total {
    background-color: #7ab55c;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.main-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.size-selector {
    background-color: white;
    padding: 10px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.size-label {
    font-size: 16px;
    margin-right: 10px;
}

.count {
    background-color: #7ab55c;
    color: white;
    padding: 2px 8px;
    border-radius: 50%;
    margin-right: 10px;
}

.change-size {
    border: none;
    background: none;
    color: #7ab55c;
    cursor: pointer;
}

.toolbar {
    background-color: white;
    padding: 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.upload-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 20px;
}

.select-all {
    display: flex;
    align-items: center;
    margin-right: 20px;
    cursor: pointer;
}

.delete-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
}

.right-tools {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.photo-item {
    background-color: white;
    border-radius: 8px;
    padding: 12px;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.photo-container {
    position: relative;
    width: 80%;
    margin: 20px auto;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-container .crop-wrapper {
    position: absolute;
    overflow: hidden;
    border-radius: 2px;
    z-index: 1;
    background: #fff;
}

.photo-container img {
    position: absolute;
    touch-action: none;
    will-change: transform;
    cursor: move;
    transition: transform 0.1s ease;
}

.photo-container img.dragging {
    transition: none !important;
}

.photo-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Remove the overflow indicator styles */
.photo-container::after,
.photo-container.overflow-x::after,
.photo-container.overflow-y::after {
    display: none;
}

.photo-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.photo-controls input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin: 0;
}

.photo-controls .buttons {
    display: flex;
    gap: 6px;
    margin-left: 8px;
}

.buttons button {
    width: 24px;
    height: 24px;
    padding: 0;
    flex-shrink: 0;
}

.buttons button i {
    font-size: 12px;
}

.quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #eee;
}

.quantity button {
    width: 24px;
    height: 24px;
    padding: 0;
    flex-shrink: 0;
}

.quantity button i {
    font-size: 10px;
}

.quantity input {
    width: 32px;
    height: 24px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0 2px;
    font-size: 13px;
}

.upload-placeholder {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 2px dashed #ddd;
    cursor: pointer;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.upload-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #666;
}

.upload-icon i {
    color: #666;
    margin-bottom: 10px;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 9999;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.close i {
    font-size: 18px;
}

.sidebar-content h3 {
    margin: 20px 0 10px;
}

.paper-type select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.add-to-cart {
    width: 100%;
    background-color: #7ab55c;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    margin-top: 20px;
    cursor: pointer;
}

.upload-btn i {
    margin-right: 8px;
    color: #7ab55c;
}

.delete-btn i {
    margin-right: 8px;
    color: #ff4444;
}

.right-tools button i {
    margin-right: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
    }
    
    .toolbar {
        flex-wrap: wrap;
    }
    
    .right-tools {
        width: 100%;
        margin-top: 10px;
        justify-content: flex-end;
    }
}

/* Common button styles */
button {
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-family: inherit;
}

button:hover {
    transform: translateY(-1px);
}

button:active {
    transform: translateY(0);
}

/* Primary button (green) */
.add-to-cart, 
.upload-btn {
    background-color: #7ab55c;
    color: white;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(122, 181, 92, 0.2);
}

.add-to-cart:hover, 
.upload-btn:hover {
    background-color: #68a14b;
    box-shadow: 0 4px 8px rgba(122, 181, 92, 0.3);
}

/* Danger button (red) */
.delete-btn {
    background-color: #fff;
    color: #ff4444;
    border: 1px solid #ffdddd;
}

.delete-btn:hover {
    background-color: #fff5f5;
    color: #ff2020;
}

/* Secondary buttons */
.settings-btn,
.share-btn,
.errors-btn,
.change-size,
.sidebar .change,
.select-all-btn {
    background-color: #f5f5f5;
    color: #666;
    border: 1px solid #e0e0e0;
    margin-right: 10px;
}

.settings-btn:hover,
.share-btn:hover,
.errors-btn:hover,
.change-size:hover,
.sidebar .change:hover,
.select-all-btn:hover {
    background-color: #e8e8e8;
    color: #333;
}

.select-all-btn.active {
    background-color: #e8e8e8;
    color: #7ab55c;
    border-color: #7ab55c;
}

.select-all-btn i {
    margin-right: 8px;
}

/* Control buttons (copy, rotate, delete) */
.buttons button {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background-color: #f5f5f5;
    color: #666;
    padding: 0;
    transition: all 0.2s ease;
}

.buttons button:hover {
    background-color: #e8e8e8;
    color: #333;
    transform: translateY(-1px);
}

.buttons .delete:hover {
    background-color: #fff5f5;
    color: #ff4444;
}

/* Quantity buttons */
.quantity button {
    width: 32px;
    height: 32px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #666;
    padding: 0;
}

.quantity button:hover {
    background-color: #e8e8e8;
    color: #333;
}

.quantity input {
    width: 45px;
    height: 32px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin: 0 4px;
    font-size: 14px;
}

/* Close button */
.close {
    width: 32px;
    height: 32px;
    background-color: transparent;
    color: #666;
    border-radius: 50%;
    padding: 0;
}

.close:hover {
    background-color: #f5f5f5;
    color: #333;
    transform: rotate(90deg);
}

/* Cart total button */
.cart-total {
    background-color: #7ab55c;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(122, 181, 92, 0.2);
    transition: all 0.2s ease;
    user-select: none;
}

.cart-total:hover {
    background-color: #68a14b;
    box-shadow: 0 4px 8px rgba(122, 181, 92, 0.3);
    transform: translateY(-1px);
}

/* Upload placeholder hover */
.upload-placeholder {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 2px dashed #ddd;
    cursor: pointer;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.upload-placeholder:hover {
    border-color: #7ab55c;
    background-color: #f8fff6;
    box-shadow: 0 4px 12px rgba(122, 181, 92, 0.15);
}

.upload-placeholder:hover .upload-icon i,
.upload-placeholder:hover .upload-icon span {
    color: #7ab55c;
}

/* Icon styles */
button i {
    font-size: 14px;
}

.upload-btn i,
.delete-btn i,
.right-tools button i {
    margin-right: 8px;
}

/* Checkbox style */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    border-radius: 3px;
    border: 2px solid #e0e0e0;
    position: relative;
    transition: all 0.2s ease;
}

input[type="checkbox"]:checked {
    background-color: #7ab55c;
    border-color: #7ab55c;
}

/* Select style */
select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

select:hover {
    border-color: #7ab55c;
}

select:focus {
    outline: none;
    border-color: #7ab55c;
    box-shadow: 0 0 0 2px rgba(122, 181, 92, 0.1);
}

/* Edit Modal */
.edit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.edit-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-header {
    padding: 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #333;
}

.close-modal {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 4px;
}

.close-modal:hover {
    color: #333;
}

.modal-body {
    padding: 20px;
}

.edit-preview {
    width: 100%;
    margin-bottom: 20px;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit-preview img {
    max-width: 100%;
    max-height: 400px;
    display: block;
    transition: transform 0.3s ease;
}

.edit-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.edit-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-controls button:hover {
    background: #e8e8e8;
    color: #333;
    transform: scale(1.1);
}

.modal-footer {
    padding: 16px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.modal-footer button {
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.cancel-edit {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #666;
}

.save-edit {
    background: #7ab55c;
    border: none;
    color: white;
}

.cancel-edit:hover {
    background: #e8e8e8;
}

.save-edit:hover {
    background: #68a14b;
}

/* Update buttons style to accommodate new edit button */
.buttons {
    display: flex;
    gap: 6px;
}

.buttons .edit {
    color: #7ab55c;
}

/* Modal styles */
.size-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.size-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-open {
    overflow: hidden;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    margin: auto;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s;
}

.size-modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5em;
    color: #333;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

.close-modal:hover {
    color: #333;
}

.size-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 10px;
}

.size-option {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.size-option:hover {
    border-color: #007bff;
    transform: translateY(-2px);
}

.size-option.selected {
    border-color: #007bff;
    background-color: #f8f9fa;
}

.size-preview {
    width: 100%;
    padding-bottom: 100%;
    background: #f8f9fa;
    margin-bottom: 10px;
    border-radius: 4px;
    position: relative;
}

.price-effect {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.9em;
}

.total {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
}

.total h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #333;
}

.total p {
    margin: 10px 0;
    font-size: 14px;
    color: #666;
}

.total-amount {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin: 15px 0 !important;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.final-price {
    color: #7ab55c;
    font-size: 18px;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background-color: #7ab55c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-to-cart:hover {
    background-color: #68a14b;
    transform: translateY(-1px);
}

/* Fit/Ratio Modal Overlay Styles */
.fit-ratio-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.fit-ratio-modal.active,
.fit-ratio-modal[style*="display: block"] {
    display: flex !important;
}

.fit-ratio-modal .modal-content {
    background: #fff;
    border-radius: 10px;
    padding: 32px 24px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.2);
    max-width: 90vw;
    min-width: 320px;
    text-align: center;
}
.fit-ratio-modal .modal-body button {
    margin: 12px 8px 0 8px;
    padding: 10px 24px;
    font-size: 1rem;
    border-radius: 6px;
    border: none;
    background: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}
.fit-ratio-modal .modal-body button:hover {
    background: #0056b3;
}

.photo-size-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #007bff;
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.95em;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    pointer-events: none;
}

/* Photo Size Modal Styles */
.photo-size-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    align-items: center;
    justify-content: center;
}

.photo-size-modal[style*="display: block"] {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.photo-size-modal .modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    margin: auto;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.photo-size-modal[style*="display: block"] .modal-content {
    transform: translateY(0);
}

.photo-size-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.photo-size-modal .modal-header h3 {
    margin: 0;
    font-size: 1.5em;
    color: #333;
}

.photo-size-modal .close-photo-size-modal {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

.photo-size-modal .close-photo-size-modal:hover {
    color: #333;
}

.photo-size-modal .size-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 10px;
}

.photo-size-modal .size-option {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.photo-size-modal .size-option:hover {
    border-color: #007bff;
    transform: translateY(-2px);
}

.photo-size-modal .size-option.selected {
    border-color: #007bff;
    background-color: #f8f9fa;
}

/* Upload Progress Styles */
#upload-progress {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 30px;
    border-radius: 12px;
    z-index: 10000;
    min-width: 300px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

#upload-progress .progress-text {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

#upload-progress .progress-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 15px;
}

#upload-progress .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 4px;
    transition: width 0.3s ease;
    position: relative;
}

#upload-progress .progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Drag and Drop Styles */
.photos-grid.dragover {
    background-color: #f8fff6;
    border: 2px dashed #7ab55c;
    border-radius: 8px;
}

.photos-grid.dragover .upload-placeholder {
    border-color: #7ab55c;
    background-color: #f8fff6;
}

/* Multiple file upload indicator */
.upload-placeholder.multiple-upload {
    border-color: #7ab55c;
    background-color: #f8fff6;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(122, 181, 92, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(122, 181, 92, 0); }
    100% { box-shadow: 0 0 0 0 rgba(122, 181, 92, 0); }
}

/* File count indicator */
.upload-placeholder::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #7ab55c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.upload-placeholder.multiple-upload::before {
    content: attr(data-file-count);
    opacity: 1;
}

/* Login Modal Styles */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.login-modal .modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.login-modal .modal-header {
    background: linear-gradient(135deg, #7ab55c, #68a14b);
    color: white;
    padding: 20px;
    text-align: center;
}

.login-modal .modal-header h3 {
    margin: 0;
    font-size: 1.4em;
    font-weight: 600;
}

.login-modal .modal-header i {
    margin-right: 8px;
}

.login-modal .modal-body {
    padding: 30px;
    text-align: center;
}

.login-icon {
    margin-bottom: 20px;
    color: #7ab55c;
}

.login-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.login-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.login-btn, .register-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.login-btn {
    background: linear-gradient(135deg, #7ab55c, #68a14b);
    color: white;
    box-shadow: 0 4px 15px rgba(122, 181, 92, 0.3);
}

.login-btn:hover {
    background: linear-gradient(135deg, #68a14b, #5a8a3f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 181, 92, 0.4);
}

.register-btn {
    background: #f8f9fa;
    color: #7ab55c;
    border: 2px solid #7ab55c;
}

.register-btn:hover {
    background: #7ab55c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(122, 181, 92, 0.3);
}

/* Modal kapanmaması için */
.login-modal {
    pointer-events: auto;
}

.login-modal * {
    pointer-events: auto;
}

/* Responsive */
@media (max-width: 480px) {
    .login-modal .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .login-actions {
        flex-direction: column;
    }
    
    .login-btn, .register-btn {
        width: 100%;
    }
} 