/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 800px;
    margin: auto;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.app-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
}

.app-logo {
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

.app-info {
    flex: 1;
}

.app-info h1 {
    font-size: 24px;
    margin: 0;
    color: #333;
}

.app-info p {
    color: #777;
    margin: 5px 0;
}

.app-rating {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.app-rating span {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-right: 5px;
}

.app-rating small {
    color: #777;
}

.app-meta {
    margin-top: 10px;
    color: #777;
}

.update-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.update-btn:hover {
    background-color: #0040c1;
}

.app-content {
    padding: 20px;
}

.screenshot-slider {
    display: flex;
    gap: 10px;
    overflow-x: scroll;
    margin: 20px 0;
}

.screenshot-slider img {
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-description h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.app-description p {
    color: #555;
    line-height: 1.6;
}
