﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    padding: 10px;
}

.container {
    height: 150%;
    margin: 0 auto;
    width: 100%;
    background-color: #ffff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}
.container p1{
     font-size: 14px;
     color: #4285f4;
     margin-left: 220px;
}
.app-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.app-logo {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    margin-top: 1px;
}

.app-info h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

.app-info p {
    font-size: 14px;
    color: #4285f4;
}
.app-info p1 {
    font-size: 14px;
    color: #4285f4;
    margin-bottom:55px;
}

.progress-container {
    width: 100%;
    display: none; /* Initially hidden */
    background-color: #f3f3f3;
    border-radius: 5px;
    height: 5px;
    position: relative;
    margin-bottom:20px;
}


.progress-bar {
    height: 100%;
    width: 0;
    background-color: #4285f4;
    border-radius: 5px;
    transition: width 0.5s ease;
}


#progress-text {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #ff6ff;
}


.rating {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 12px;
}

.install-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #4285f4;
    color: #fff;
    font-size: 18px;
    text-align: center;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-bottom: 20px;
}

.install-btn:hover {
    background-color: #357ae8;
}

.app-screenshots {
    display: flex;
    justify-content: space-between;
}

.app-screenshots img {
    width: 30%;
    border-radius: 10px;
}
.center-body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.loader-circle{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 70px;
    height: 70px;
    background: transparent;
    border: 3px solid #3c3c3c;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    font-family: sans-serif;
    font-size: 12px;
    color: #00eaff;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0, 0, 0, .5);
}

