.cart-item-quantity button {
    padding: 11px 20px !important;
}

.application-container {
    max-width: 800px;
    margin: 0px auto;
    position: relative;
}

.application-container > h1{
    margin: 50px 0;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cafe-container{
    position: absolute;
    z-index: -1;
    right: -200px;
    top: 300px;
}

.cafe-container img {
    animation: float 3s ease-in-out infinite;
}

.cafe-container img:nth-child(1) {
    animation-delay: 0s;
}

.cafe-container img:nth-child(2){
    position: relative;
    top: -50px;
    animation-delay: 0.5s;
}

.cafe-container img:nth-child(3){
    position: relative;
    top: -100px;
    animation-delay: 1s;
}

.cafe-container:nth-child(3){
    position: absolute;
    top: 250px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.form-group input,
.form-group textarea {
    padding: 17px !important;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background-color: transparent;
}

.form-group select {
    padding: 17px !important;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background-color: transparent;
    width: 100%;
}

.form-group select:focus {
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
}

.form-group-name{
    display: flex;
    gap: 1.5rem;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    padding: 12px 24px;
    background-color: #D0A652;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.submit-btn i {
    font-size: 16px;
}

.submit-btn:hover {
    background-color: #93753a;
}

.submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(208, 166, 82, 0.4);
}

.submit-btn:disabled {
    background-color: #cccccc;
    opacity: 0.7;
    cursor: not-allowed;
    transform: scale(0.98);
}

.loading-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    text-align: center;
    min-width: 300px;
    animation: modalFadeIn 0.3s ease-in-out;
}

.modal.show { 
    display: block; 
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
}

.modal-overlay.show {
    display: block;
}

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

.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.modal-content img {
    width: 80px;
    height: auto;
}

.modal-content p {
    text-align: center;
    margin: 0;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 5px 10px;
    font-size: 24px;
}

.success-modal {
    color: #4CAF50;
}

.error-modal {
    color: #f44336;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-overlay {
    animation: overlayFadeIn 0.3s ease-in-out;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media screen and (max-width: 1230px){
    .cafe-container{
        position: absolute;
        z-index: -1;
        right: 0px;
        top: 300px;
    }

    .cafe-container img:nth-child(1){
        width: 50px;
    }

    .cafe-container img:nth-child(2){
        width: 50px;
    }
    
    .cafe-container img:nth-child(3){
        width: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cafe-container img {
        animation: none;
    }
    
    .submit-btn {
        transition: none;
    }
}

@media print {
    .cafe-container {
        display: none;
    }
    
    .application-form {
        box-shadow: none;
    }
}

