.box{
    display: flex;
    align-items: center;
    justify-content: center;
}

#app{
    width: 65%;
    position: relative;
    margin: 0 auto;
}

.aaa{
    align-items: baseline;
    padding: 20px;
    margin: 10px;
    width: 33%;
    height: 100%;
    border-radius: 20px;
    padding-top: 40px;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn{
    display: inline-flex;
    align-items: center;
    background-color: #dddddd;
    color: black;
    padding: 15px;
    border-radius: 999px;
    gap: 8px;
    height: 78px;
    transition: background-color 0.3s, font-size 0.3s;
    transition-timing-function: ease-in-out;
    overflow: hidden;
    position: relative;
}

.btn:hover{
    background-color: #eeeeee;
    font-size: 1.1em;
}

.btn .icon {
    background-color: #a8a8a8;
    color: black;
    font-weight: bold;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.premium-require {
    display: inline-flex;
    align-items: center;
    position: absolute;
    padding-left: 20px;
    bottom: -78px; /* en alta */
    left: 0;   /* sola hizalı */
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, #b32a2a, rgba(255, 143, 143, 0.938), rgba(255, 255, 255, 0));
    transition: bottom 0.3s ease;
}

.btn:hover .premium-require {
    bottom: 0; /* hover sırasında yukarı kaydır */
}

.outline {
    border: 2px solid rgb(206, 64, 64);
}

.hundred{
    width: 100%;
    margin: 1%;
    text-align: center;
}

.fifty{
    width: 49%;
    margin-top: 1%;
    margin-bottom: 1%;
}

a {
    text-decoration: none;
    color: white;
}

.progress-card {
    background-color: #3f3f3f;
    padding: 16px;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    color: rgb(0, 0, 0);
    font-family: 'Segoe UI', sans-serif;
    margin: 13px;
}

.progress-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.progress-title strong {
    font-weight: bold;
    color: white;
}

.progress-title span {
    color: #aaa;
    margin-left: 4px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: black;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-fill {
    height: 100%;
    background-color: red;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 13px;
    color: #ccc;
}
  
.course-container {
    display: flex;
    justify-content: space-between;
    height: auto;
}

.course-card {
    background-color: #dddddd;
    padding: 16px;
    border-radius: 20px;
    width: 33%;
    max-width: 300px;
    height: auto;
    color: black;
    font-family: 'Segoe UI', sans-serif;
    margin: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.course-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* önemli kısım */
    display: block;
}

.course-text {
    text-align: center;
}

.mini-btn {
    margin-top: 30px;
    background-color: #eeeeee;
    color: black;
    border-radius: 999px;
    padding: 5px 10px;
    align-self: flex-end;
    cursor: pointer;
}

a {
    color: black;
}