.reference-image {
    width: 100px; /* Or any size you prefer */
    height: auto;
    cursor: pointer;
    /* Additional styling if needed */
}

.step4-container {
    color: #f5f5f5; /* Light gray text color */
    display: flex;
    flex-direction: column;
    align-items: center; /* Horizontally center the content */
    justify-content: center; /* Vertically center the content */
}

.step4-label {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: center; /* Center the label text */
}

.step4-logo-textbox {
    width: 90%;
    padding: 8px;
    margin: 0;
    border: 2px solid #f5f5f5;
    border-radius: 4px;
    color: black;
}

.step4-upload-btn {
    display: block;
    margin: 10px 0;
    background-color: #4CAF50; /* Green color */
    border: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.step4-upload-btn:hover {
    background-color: #45a049; /* Darker green on hover */
}

.step4-file-list {
    display: flex;
    align-items: center;
    border: 2px solid #f5f5f5; /* Border for the file display */
    border-radius: 4px;
    padding: 8px;
    max-width: 300px;
    justify-content: space-between;
    margin: 0px;
    flex-direction: column;
    min-width: 200px;
}

.step4-file-item {
    padding: 8px;
    border-bottom: 1px solid #f5f5f5; /* Divider line between file names */
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.step4-file-item:last-child {
    border-bottom: none; /* No divider for the last item */
}

.step4-file-delete {
    color: white;
    border-radius: 50%;
    background-color: black;
    border: none;
    display: inline-block;
}

.step4-file-delete:hover {
    color: #e60000; /* A darker red for hover effect */
}

.step4-container label {
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.step4-logo-text-label {
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    text-align: center; /* Center the label text for logo text */
}
.step5-container {
    color: #f5f5f5; /* Light gray text color */
    display: flex;
    flex-direction: column;
    align-items: center; /* Horizontally center the content */
    justify-content: center; /* Vertically center the content */
}

.step5-label {
    font-size: 1.2rem;
    text-align: center; /* Center the label text */
}

.step5-upload-btn {
    display: block;
    margin: 10px 0;
    background-color: #4CAF50; /* Green color */
    border: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.step5-upload-btn:hover {
    background-color: #45a049; /* Darker green on hover */
}

.step5-file-display {
    display: flex;
    align-items: center;
    border: 2px solid #f5f5f5; /* Border for the file display */
    border-radius: 4px;
    padding: 8px;
    max-width: 300px;
    justify-content: space-between;
    min-width: 200px;
    margin: 0px;
}

.step5-file-delete {
    color: white;
    border-radius: 50%;
    background-color: black;
    border: none;
    display: inline-block;
}

.step5-file-delete:hover {
    color: #e60000; /* A darker red for hover effect */
}

.step5-logo-text-label {
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    text-align: center; /* Center the label text for logo text */
}

.step5-logo-textbox {
    width: 90%;
    padding: 8px;
    margin: 0;
    border: 2px solid #f5f5f5;
    border-radius: 4px;
    color: black;
}

.step5-hint {
    color: white; 
    text-align: center; 
    font-size: 0.9rem; 
    margin-top: 10px;
}

/* Additional style to center-align any title/header you might add to the Step5 content */
.step5-title {
    font-size: 2rem;
    color: white; 
    text-align: center; /* Center the title text */
    width: 100%;
    margin-bottom: 20px;
}

.step5-container label {
    font-size: 24px;
    color: white;
    font-weight: bold;
}
.step6-container {
    color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.step6-label {
    font-size: 24px;
    margin-bottom: 10px;

}

.step6-textbox {
    width: 90%;
    padding: 8px;
    margin: 10px 0;
    border: 2px solid #f5f5f5;
    border-radius: 4px;
    color: black;
    max-width: 500px;
}

.step6-container label {
    font-size: 24px;
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
}

.step7-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(max-content, 1fr)); /* 2 boxes, each taking the max content width or sharing the space equally */
    gap: 50px;  /* space between each box */
    margin: 20px 0;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}


.color-label {
    font-size: 20px;
    margin-bottom: 10px;
    color: white; /* Add color white to make the text visible on dark background */
    font-weight: bold;
}

.color-toggle {
    width: 80px; /* Adjust width and height to achieve pill shape */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border: none;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 20px; /* Add rounded borders for pill shape */
    transition: background-color 0.5s ease;
}

.color-toggle.active {
    background-color: red;
    color: white;
}

.color-price {
    font-size: 16px;
    color: white; /* Add color white to make the text visible on dark background */
    font-weight: bold;
}

/* fadeTransition.css */
.fade-enter, .fade-appear {
    opacity: 0;
  }
  
  .fade-enter-active, .fade-appear-active {
    opacity: 1;
    transition: opacity 1500ms ease-in;
  }
  
  .fade-exit {
    opacity: 1;
  }
  
  .fade-exit-active {
    opacity: 0;
    transition: opacity 300ms ease-in;
  }
  
.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #000;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.success-page {
    background-color: black;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 2rem;
}

.details-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.success-message {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: red;
    padding: 1rem;
    font-weight: 600;
}

.success-description {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
    padding: 1rem;
}

.go-home-link {
    background-color: #125cfc;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 10px;
}

.go-home-link:hover {
    background-color: #084fe9;
}

@media (max-width: 768px) {
    .image-container {
        display: none; /* Hide the image container */
    }
}

