body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.app-container {
    width: 100%;
    max-width: 480px; /* Mobile-friendly width */
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.app-header {
    background-color: #ff9800;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 22px;
    font-weight: bold;
}

.festival-container {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.festival-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease-in-out;
    border: 2px solid red /* 🔥 Added Orange Border */
}

.festival-card:hover {
    transform: scale(1.05);
    background: #ffecb3;
}


.festival-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.festival-icon {
    width: 50px;
    height: 50px;
}

.festival-details {
    flex-grow: 1;
    text-align: center;
}

.festival-details h2 {
    font-size: 18px;
    margin: 0;
    color: #333;
}

.festival-details p {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0;
}

.left-icon {
    margin-right: 10px;
}

.right-icon {
    margin-left: 10px;
}

.app-footer {
    background-color: #ff9800;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.template-title {
    text-align: center;
    font-size: 20px;
    padding: 15px;
    color: #333;
}

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

.template-card {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.template-preview {
    width: 100%;
    border-radius: 5px;
}

.try-btn {
    display: block;
    margin-top: 10px;
    background-color: #ff9800;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.try-btn:hover {
    background-color: #e68900;
}
