* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.head{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    margin-right: 50px;
}


.head img {
    height: 60px;
    filter: invert();
}

h4 {
    font-weight: 400;
    margin-top: 10px;
    
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0d1b2a;
    color: #e0e6f0;
    min-height: 100%;
}

/* search */
.profileSearch {
    display: flex;
    justify-content: center;
    padding: 2.5rem 1rem 1rem;
}

.profileSearch form {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 500px;
}

#searchInput {
    flex: 1;
    height: 42px;
    width: 500px;
    border-radius: 8px;
    border: 1px solid #2e4a6b;
    background-color: #1a2f45;
    color: #e0e6f0;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
}

#searchInput::placeholder {
    color: #5a7a9a;
}

#searchInput:focus {
    border-color: #4a90d9;
}

#searchBtn {
    height: 42px;
    padding: 0 20px;
    border-radius: 8px;
    background: #4a90d9;
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

#searchBtn:hover {
    background: #357abd;
}

#searchInput::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

/* profile card */
.profileCard {
    margin: 1.5rem auto;
    background-color: #1a2f45;
    padding: 24px 32px;
    width: 600px;
    border-radius: 12px;
    border: 1px solid #2e4a6b;
}

.cardTop {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.profileImg img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid #2e4a6b;
}

.profileDetails h2 {
    font-size: 18px;
    font-weight: 500;
    color: #e0e6f0;
    margin-bottom: 4px;
}

.profileDetails p {
    font-size: 13px;
    color: #8aaac8;
    line-height: 1.5;
}

/* KPI stats */
.KPI {
    display: flex;
    gap: 12px;
    margin: 16px 0;
}

.KPI p {
    flex: 1;
    background-color: #0d1b2a;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    color: #8aaac8;
    text-align: center;
    border: 1px solid #2e4a6b;
}

/* repos */
.repoItem {
    margin-top: 10px;
    padding: 10px 14px;
    margin-bottom: 8px;
    background-color: #0d1b2a;
    border-radius: 8px;
    border: 1px solid #2e4a6b;
    width: 515px;
}

.repoItem a {
    color: #4a90d9;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.repoItem a:hover {
    text-decoration: underline;
}

#repoContainer {
    max-height: 200px;
    overflow-y: scroll;
    margin-top: 10px;
}


#repoContainer::-webkit-scrollbar {
    width: 4px;
}

#repoContainer::-webkit-scrollbar-track {
    background: transparent;
}

#repoContainer::-webkit-scrollbar-thumb {
    background: #2e4a6b;
    border-radius: 4px;
}

#repoContainer::-webkit-scrollbar-thumb:hover {
    background: #4a90d9;
}