body {
    font-family: 'Poppins', sans-serif;
    background-color: #F9F1E5;
    margin: 0;
    padding: 0;
}

.launch-container {
    margin: 0 auto;
    margin-top: 128px;
    margin-bottom: 16px;
    padding: 16px;
    text-align: center;
    max-width: 80%;
}

.launch-center {
    padding: 20px;
    text-align: center;
    margin: 20px auto
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
}

.popup {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 300px;
    position: relative;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #707070;
}

.button,
.create-btn {
    padding: 8px 15px;
    margin: 5px;
    background-color: #ee472c;
    color: white;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.button:hover,
.create-btn:hover {
    background-color: #f7a31c;
}

.rounded-div {
    background-color: white;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    width:100%;
}

@media (min-width: 768px) {
            .rounded-div {
                width: 40%;
            }
        }


a {
    color: #117c71;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    max-width: 80%;
}

.code-box {
    background-color: #ffffff; /* Light gray background for visibility */
    border: 1px solid #ccc; /* Subtle border */
    border-radius: 5px; /* Rounded corners */
    padding: 15px; /* Padding for content inside the box */
    font-family: 'Poppins', sans-serif; /* Monospaced font for code-like appearance */
    color: #333; /* Darker text color for contrast */
    margin: 10px auto; /* Centering and spacing */
    width: 80%; /* Width relative to its container */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Soft shadow for 3D effect */
    white-space: pre-wrap; /* Ensures that data format inside is preserved */
}

.copy-btn {
    background-color: #ee472c; /* Blue background for button */
    color: white; /* White text */
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer; /* Cursor changes to pointer to indicate it's clickable */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.copy-btn:hover {
    background-color: #f7a31c; /* Darker blue on hover */
}
