.pa-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
}

.pa-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.pa-form {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .pa-form {
        grid-template-columns: 1fr 1fr auto;
        align-items: end;
    }
}

.pa-form-group {
    display: flex;
    flex-direction: column;
}

.pa-form input[type="text"],
.pa-form input[type="date"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.pa-submit-btn {
    padding: 10px 20px;
    background-color: #FF6B35;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s;
}

.pa-submit-btn:hover {
    background-color: #E55A2B;
}

.pa-submit-btn .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.pa-divider {
    margin: 30px 0;
    border: none;
    border-top: 1px solid #eee;
}

.pa-reading-header {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.pa-reading-header strong {
    color: #333;
    font-weight: 600;
}

.pa-prediction-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .pa-prediction-content {
        flex-direction: column;
    }
}

.pa-deity-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.pa-prediction-text {
    flex: 1;
}

.pa-deity-name {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.pa-prediction-en {
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.pa-prediction-ta {
    line-height: 1.8;
    color: #555;
    font-family: 'Noto Sans Tamil', sans-serif;
}

.pa-loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.pa-loading:after {
    content: '...';
    animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
    0%, 20% {
        color: rgba(0,0,0,0);
        text-shadow:
            .25em 0 0 rgba(0,0,0,0),
            .5em 0 0 rgba(0,0,0,0);
    }
    40% {
        color: #666;
        text-shadow:
            .25em 0 0 rgba(0,0,0,0),
            .5em 0 0 rgba(0,0,0,0);
    }
    60% {
        text-shadow:
            .25em 0 0 #666,
            .5em 0 0 rgba(0,0,0,0);
    }
    80%, 100% {
        text-shadow:
            .25em 0 0 #666,
            .5em 0 0 #666;
    }
}