/* Google Drive App - Custom Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #1c1c1c, #3a3a3a);
    color: #fff;

}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.85);
    padding: 15px 30px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f8f9fa !important;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Buttons */
.btn-custom {
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #007bff;
    border: none;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-3px);
}

.btn-success {
    background: #28a745;
    border: none;
}

.btn-success:hover {
    background: #1e7e34;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.6;
}
