.word-to-ppt-converter {
    max-width: 700px;
    margin: 30px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.word-to-ppt-converter h2 {
    margin-bottom: 10px;
    color: #333;
}

.word-to-ppt-converter p {
    color: #555;
    margin-bottom: 20px;
}

.word-to-ppt-converter input[type="file"] {
    display: block;
    margin: 20px auto;
    padding: 10px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    background: #fff;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.buttons button {
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

#convertButton {
    background: #0066cc;
    color: white;
}

#convertButton:hover:not(:disabled) {
    background: #0055aa;
}

#downloadButton {
    background: #28a745;
    color: white;
}

#downloadButton:hover:not(:disabled) {
    background: #218838;
}

#resetButton {
    background: #dc3545;
    color: white;
}

#resetButton:hover {
    background: #c82333;
}

#statusMessage {
    margin-top: 20px;
    min-height: 24px;
    font-weight: bold;
    color: #d63384;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .word-to-ppt-converter {
        padding: 20px;
        margin: 20px;
    }
    
    .buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .buttons button {
        width: 100%;
        max-width: 300px;
    }
}