/* Simple CSS for Haiku Generator */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 576px;
    padding: 24px;
    margin: 20px;
}

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

.logo {
    width: 130px;
    height: 48px;
    margin: 0 auto;
}

.title {
    font-size: 20px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 4px;
    text-align: center;
}

.subtitle {
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 20px;
    text-align: center;
}

.haiku-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 0;
    width: 576px;
    height: 576px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.haiku-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 576px;
    max-height: 576px;
}

/* Responsive styles for mobile devices */
@media (max-width: 767px) {
    .haiku-image {
        object-fit: contain;
    }
    
    .haiku-container {
        width: 100%;
        height: 0;
        padding-bottom: 100%; /* Mantiene la proporción cuadrada */
        position: relative;
    }
    
    .haiku-container img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

.haiku-text {
    background-color: #ffffff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.haiku-line {
    margin: 0;
    line-height: 1.5;
}

.haiku-line-1 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.haiku-line-2, .haiku-line-3 {
    font-size: 16px;
    color: #3c4043;
}

.dots {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-blue { background-color: #4285f4; }
.dot-red { background-color: #ea4335; }
.dot-yellow { background-color: #fbbc05; }
.dot-green { background-color: #34a853; }

.section-title {
    font-size: 18px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 8px;
    text-align: center;
}

.section-subtitle {
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 20px;
    text-align: center;
}

.button-container {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

.button {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.button-download {
    background-color: #ffffff;
    color: #3c4043;
    border: 1px solid #dadce0;
}

/* Eliminado efecto hover */
.button-download:hover {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: none !important;
}

.button-share {
    background-color: #4285f4;
    color: white;
    border: none;
}

/* Eliminado efecto hover */
.button-share:hover {
    background-color: #4285f4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: none !important;
}

/* Eliminado efecto active */
.button:active {
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    transform: none !important;
}

.button i {
    font-size: 16px;
}

.share-button-container {
    position: relative;
    width: 100%;
}

.share-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
    min-width: 180px;
    margin-top: 8px;
    padding: 8px 0;
}

.share-option {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    border-radius: 4px;
    margin: 2px 8px;
}

/* Eliminado efecto hover */
.share-option:hover {
    background-color: transparent;
    transform: none !important;
}

.share-option svg {
    width: 22px;
    height: 22px;
    margin-right: 12px;
}

.button-download {
    background-color: #ffffff;
    color: #3c4043;
    border: 1px solid #dadce0;
}

/* Eliminado efecto hover */
.button-download:hover {
    background-color: #ffffff;
    transform: none !important;
}

.button-container {
    display: flex;
    gap: 12px;
}

.button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.button svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.share-button-container {
    position: relative;
    width: 100%;
}