.terminal {
    width: 100%;
    height: 100%;
    max-height: inherit;
    display: flex;
    flex-direction: column;
    background-color: #101729;
    border: 5px solid #1a222f;
    border-radius: 24px;
    font-family: "Courier New", monospace;
}

.top-side {
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid #1a222f;
    padding: 9px 15px;
}

.red-circle {
    width: 9px;
    height: 9px;
    background-color: #ef4444;
    border-radius: 50%;
    margin-right: 5px;
}

.yellow-circle {
    width: 9px;
    height: 9px;
    background-color: #eab308;
    border-radius: 50%;
    margin-right: 5px;
}

.green-circle {
    width: 9px;
    height: 9px;
    background-color: #22c55e;
    border-radius: 50%;
    margin-right: 11px;
}

.terminal-title {
    font-size: 90%;
    color: white;
}

.writingSignal{
    width: fit-content;
    height: fit-content;
    margin-left: auto;
    display: none;
}

.writingSignal>svg{
    width: 14px;
    height: 14px;
    color: #46cf79;
    animation: green-color 1.5s infinite;
}

.terminalContent {
    height: 100%;
    max-height: 153px;
    overflow-y: auto;
    padding: 10px 15px;
    color: white;
    font-size: 90%;
}

.blueContent {
    color: #6daeff;
}

.whiteContent {
    color: #ffffff;
}

.greenContent {
    color: #46cf79;
    animation: green-color 3s infinite;
}

.aciiContent {
    color: #ffffff;
    font-size: 70%;
    padding: 11px 0px 5px 0px;
}

.terminalLoading {
    /* font-weight: bold; */
    color: #46cf79;
}

@keyframes green-color {
    0% {
        color: #2a7151;
    }

    50% {
        color: #46cf79;
    }

    100% {
        color: #2a7151;
    }
}

.updatesHeading{
    color: #ffffff;
    margin: 5px 0px 11px 0px;
}

.oneTerminalSocial {
    display: flex;
    gap: 7px;
    margin-bottom: 11px;
}

.whichSocial {
    width: fit-content;
    display: flex;
    align-items: center;
    color: #4479C6;
}

.whichSocial>svg {
    width: 11px;
    height: 11px;
    color: #6daeff;
}

.postTitle {
    width: fit-content;
    flex-grow: 1;
}

.postTitle>a{
    color: #E6D86D;
    text-decoration: none;
    overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  position: relative;
}

.postTitle>a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    border: none;
    border-bottom: 1px solid #E6D86D;
    opacity: 0.7;
}

.postTime {
    width: fit-content;
    margin-left: auto;
    color: gray;
}

.terminalContent::-webkit-scrollbar {
    width: 10px;
}

.terminalContent::-webkit-scrollbar-track {
    background-color: transparent;
}

.terminalContent::-webkit-scrollbar-thumb {
    background-clip: content-box;
    background-color: #919191;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    box-sizing: border-box;
}

.terminalContent::-webkit-scrollbar-thumb:hover {
    background-color: #717171;
}

@media only screen and (max-width: 1280px) {
    .terminalContent {
        max-height: 145px;
    }
}

@media only screen and (max-width: 1080px) {
    .terminalContent {
        max-height: 100%;
    }
}