.countdown {
    margin: auto;
    font-weight: bold;
    font-size: 1em;
}

.break {
    /* height: 100px; */
    margin-top: 100px;
}

.logout, .login {
    float: left;
    font-weight: 400;
    font-size: 1em;
    margin-top: 3vh;
    margin-right: 1vw;
    position: absolute;
}

#logoutLink, #loginLink {
    color: black;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
}

#submit {
    display: block;
    border: none;
    padding: 15px 20px;
    border-radius: 25px;
    width: 100%;
    color: white;
    font-weight: bold;
    font-size: 1em;
    margin-top: 5px;
    margin: auto;
    background: #459ed1;
    text-decoration: none;
}

.main {
    display: flex;
    justify-content: center;
    vertical-align: middle;
    flex-flow: row wrap;
}

.row {
    width: 100%;
    display: flex;
    justify-content: center;
    vertical-align: middle;
    margin-top: 30px;
}

.row:first-of-type {
    width: 100%;
    display: flex;
    justify-content: center;
    vertical-align: middle;
    margin-top: 0px;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    background-color: white;
    float: left;
    width: 33vw;
    padding: 0 10px;
}

@media screen and (max-width: 600px) {
    .card {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }
}

img {
    max-width: 100%;
    max-height: 100%;
}

.info-container {
    text-align: left;
    box-sizing: border-box;
    padding: 0px 20px;
}

.info {
    height: 100px;
    box-sizing:border-box;
    padding-top: 10px;
}

.post-author {
    font-weight: 600;
    font-size: 1em;
    margin: 0px;
    float: left;
}

.timestamp {
    font-weight: 400;
    font-size: 1em;
    margin:0px;
    color: #d4d4d4;
    float: right;
}

.icons {
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.kebab-menu {
    float: left;
    height: 30px;
    cursor: pointer;
}

.vote-container {
    float: right;
    display: flex;
    justify-content: space-between;
}

.not-voted {
    opacity: .3;
}

.vote-counter {
    font-weight: 600;
    font-size: 1.5em;
}

.paw {
    height: 30px;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.show {
    display: block;
}

.admin-controls {
    position: absolute;
    right: 1vw;
    top: 3vh;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-label {
    font-weight: bold;
    font-size: 1em;
}

.toggle-button {
    padding: 8px 16px;
    border: 2px solid #459ed1;
    background-color: white;
    color: #459ed1;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-button:hover {
    background-color: #459ed1;
    color: white;
}

.controls {
    margin-bottom: 10px;
}