body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    margin: 0;
}

.main {
    max-width: 400px;
}

.image {
    background-position: center;
    background-size: cover;
}

.back-btn {
    width: 40px;
    height: 40px;
    margin-left: 10px;
    background-image: url(../../images/back.382b99b.webp);
    background-size: cover;
}

.header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    margin-bottom: 15px;
}

h1 {
   margin-left: 30px;
   font-size: 24px;
}
.main {
    padding: 20px;
    color: #fff;
}

.entry {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
            align-items: flex-start;
    background: #1a1a1a;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 2px solid #333;
}

.entry-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
}

.entry-title {
    color: gray;
    font-weight: bold;
    font-size: 18px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
            flex: 1;
    margin-right: 10px;
}

.entry-desc {
    -webkit-box-flex: 2;
    -webkit-flex: 2;
       -moz-box-flex: 2;
            flex: 2;
    margin-right: 10px;
    font-size: 14px;
    word-break: break-word;
}

.copy-btn {
    background: #0CA97E;
    color: #fff;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    font-size: 14px;
    white-space: nowrap;
}

.copy-btn:hover {
    background: #333;
}

.copied {
    color: #0f0;
    font-weight: bold;
    margin-left: 8px;
    font-size: 14px;
}
