body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.logo-container {
    margin-bottom: 15px;
}

.logo {
    max-width: 200px;
    height: auto;
}

h1 {
    color: #333;
    margin-bottom: 30px;
}

.template-select {
    appearance: none; /* Hides default dropdown arrow */
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    cursor: pointer;
    outline: none;
    background-color: white;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M7 10l5 5 5-5z"/></svg>'); 
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 22px;
    padding-right: 30px; /* Space for the arrow */
}

.template-select:focus {
    border-color: #4CAF50;
}

.select-button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-button:hover {
    background-color: #45a049;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .container {
        padding: 20px;
        width: 95%;
        margin: 10px auto;
    }

    .logo {
        max-width: 150px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .template-select {
        padding: 12px;
        font-size: 14px;
    }

    .select-button {
        padding: 10px 25px;
        font-size: 14px;
        width: 100%;
    }
}

/* Small devices (phones) */
@media screen and (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 15px;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    }

    .logo {
        max-width: 120px;
    }

    h1 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .logo-container {
        margin-bottom: 20px;
    }

    .template-select {
        padding: 10px;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .select-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Extra small devices */
@media screen and (max-width: 320px) {
    .container {
        padding: 10px;
        width: 100%;
    }

    .logo {
        max-width: 100px;
    }

    h1 {
        font-size: 18px;
    }

    .template-select {
        padding: 8px;
        font-size: 12px;
    }

    .select-button {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* Landscape orientation */
@media screen and (max-height: 480px) {
    body {
        min-height: auto;
        padding: 10px;
    }

    .container {
        margin: 10px auto;
    }
}