/* General Reset */
* {
    text-size-adjust: none; /* Disable automatic text size adjustment on mobile devices */
    -webkit-text-size-adjust: none; /* For WebKit browsers */
    -moz-text-size-adjust: none; /* For Firefox */
}
body, html {
    margin: 0;
    padding: 0;
    font-family: system-ui;
    color: white;
    background: #000000;
    box-sizing: border-box;
}
a {
color: white;
}
.nav-logo {
	height: 40px;
	width: auto;
}
.logo-icon {
	max-width: 40px;
	margin-bottom: 15px;
}

@media (min-width: 500px) {
	.logo-icon {
		display: none;
		margin-bottom: 0;
	}
}


h1 {
    margin: 0;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1;
}
.caps-title {
    font-size: 14px!important;
    text-transform: uppercase;
}

.title {
    font-size: 28px;
	max-width: 288px;
	margin-bottom: 30px;
}

/* Containers */
.page-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 100vh;
}
.pricing-container {
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
	max-width: 700px;
	margin: 0 auto;
}

.left-side {
    flex: 1;
    display: block;
}

.right-side {
    flex: 1;
    padding: 30px;
    background: black;
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: center; /* Center vertically on desktop */
    align-items: center;
    text-align: center;
}

/* Image Container */
.image-container {
    width: 100%;
    height: 100%;
    background-image: url('assets/space.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Login Container */
.login-container {
    width: 100%;
    border: 1px solid #343434;
    max-width: 350px;
    padding: 30px;
}

.login-container h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

/* Form Styling */
.login-form {
    width: 100%;
    margin-top: 20px;
}

.input {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #343434;
    background: #121212;
    color: white;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input:focus {
    border-color: #007bff;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
}

.action-button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.action-button:hover {
    background-color: #0056b3;
}

.action-button:active {
    transform: scale(0.98);
}

/* Signup Box */
.signup-box {
    margin-top: 20px;
    padding: 30px;
    border: 1px solid #343434;
    background: black;
    color: white;
    text-align: center;
    max-width: 350px; /* Match width of the login container */
    margin-bottom: 15px;
    width: 100%;
}

.signup-box p {
    margin: 0;
    font-size: 14px;
}

.signup-link {
    color: #007bff;
    text-decoration: none;
}

.signup-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-container {
        flex-direction: column;
    }

    .left-side {
        display: none;
    }

    .right-side {
        padding: 30px;
        display: flex;
    }

    .login-container {
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        max-width: 100%;
    }

    .login-container h1 {
        text-align: center;
        margin-bottom: 20px;
    }

    .login-form {
        margin-top: 10px;
    }

    .input {
        width: 100%;
        margin-bottom: 10px;
    }

    .signup-box {
        margin-top: 20px;
        padding: 15px;
        border: none; /* Remove border on mobile */
        border-radius: 0;
        background: none;
        color: white;
        text-align: center;
    }
}









.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

@media (min-width: 700px) {
    .grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}


.detail-box.active {
    display: block;
}


/* MAIN START */
/* CONTAINERS */
.container {
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
}
.container-888 {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.container-slim {
    max-width: 450px;
}
/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}
.navbar .logo {
    font-size: 20px;
    font-weight: bold;
}
/* ELEMENTS */
.mb-15 {
    margin-bottom: 15px;
}
.mb-30 {
    margin-bottom: 30px;
}
.notice {
    font-size: 12px;
}
.title-description {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 28px;
}
.notice2 {
    font-size: 14px;
    text-decoration: underline;
}

/* GRID ELEMENTS */
.grid-item {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ccc;
    text-align: center;
    cursor: pointer;
}
.grid-item.active {
    background: white;
    color: black;
    font-weight: bold;
    border-color: #0056b3;
}
.detail-box {
    display: none;
}

.double-row {
    display: flex; /* Enable flexbox */
    justify-content: space-between; /* Distribute space between items */
    align-items: center; /* Align items vertically at the center */
    padding-top: 15px;
    padding-bottom: 15px; /* Optional padding */
    border-bottom: 1px solid rgb(255 255 255 / 40%);
}

.dr-left {
    font-weight: bold; /* Highlight the label */
}

.dr-right {
    font-weight: bold; /* Highlight the price */
}
