.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 20px;
    flex-direction: column;
    box-sizing: border-box;
}

.transaction-details {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    box-sizing: border-box;
    background-color: white;
}

.trans-header {
    flex-direction: row !important;
}

.trans-header,
.trans-status,
.trans-details,
.share-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    color: grey;
}

.trans-header {
    height: auto;
    border-bottom: grey 0.1px dotted;
}

.trans-header a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

.trans-header a:hover {
    color: gray;
}

.trans-header h1 {
    font-size: 1.2rem;
    color: grey;
}

.trans-status {
    height: auto;
    border-bottom: grey 0.1px dotted;
}

.status-logo {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: green;
    font-size: 20px;
    font-weight: 900;
    color: white;
}

.trans-status h2 {
    font-size: 18px;
    font-weight: 600;
    color: grey;
}

.trans-details {
    height: auto;
    border-bottom: grey 0.1px dotted;
}

.trans-type,
.sender-details,
.trans-number,
.trans-date,
.session-time {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.sender-details .sender h3,
.trans-date h3 {
    font-weight: 600;
}

.trans-type p,
.sender-details p,
.trans-number p,
.trans-date p,
.session-time p {
    font-size: 14px;
    color: grey;
}

.trans-type h2,
.sender-details h2,
.trans-number h3,
.session-time h4 {
    font-weight: 700;
    padding-left: 10px;
    color: grey;
}

.trans-number h3 i,
.session-time i {
    font-size: 10px;
    padding-bottom: 15px;
    color: grey;
}

.share-btn {
    height: auto;
}

.share-btn button {
    width: 200px;
    height: 40px;
    background-color: green;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 26px;
    border: none;
}

.share-btn button:hover {
    background-color: rgb(1, 143, 34);
}


/* Responsive Design */

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    .transaction-details {
        width: 100%;
    }
    .trans-header a {
        font-size: 1.2rem;
    }
    .trans-header h1 {
        font-size: 1rem;
    }
    .trans-status h2,
    .trans-type h2,
    .sender-details h2,
    .trans-number h3,
    .session-time h4 {
        font-size: 16px;
    }
    .trans-type p,
    .sender-details p,
    .trans-number p,
    .trans-date p,
    .session-time p {
        font-size: 12px;
    }
    .share-btn button {
        width: 100%;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .trans-header a {
        font-size: 1rem;
    }
    .trans-header h1 {
        font-size: 0.9rem;
    }
    .trans-status h2,
    .trans-type h2,
    .sender-details h2,
    .trans-number h3,
    .session-time h4 {
        font-size: 14px;
    }
    .trans-type p,
    .sender-details p,
    .trans-number p,
    .trans-date p,
    .session-time p {
        font-size: 10px;
    }
    .share-btn button {
        font-size: 12px;
    }
}